-
Notifications
You must be signed in to change notification settings - Fork 0
/
aufgabe2-pointer.c
336 lines (277 loc) · 6.73 KB
/
aufgabe2-pointer.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/**
* @file aufgabe2-pointer.c
* @brief Aufgabe2 - Pointermanipulationen
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// Falls notwendig erweitern Sie die Liste der includes
/**
@brief Aufgabe2a: Scannen durch einen String
@param [in] char* input
@return char*
Input ist ein String der aus alphanumerischen Zeichen besteht die
durch :: getrennt sein koennen. Als Beispiele betrachte man
<p>
<ul>
<li> "Ha::ll::o"
<li> "47::11"
</ul>
Ihre Aufgabe ist es eine Funktion zu schreiben die den
laengsten suffix (Endung) liefert der kein :: enthaelt.
Laengste Endungen fuer unsere Beispiele:
<ul>
<li> "o"
<li> "11"
</ul>
<p>
Input ist der String (char pointer), das Ergebnis soll als
return Wert geliefert werden, welcher ein Zeiger auf den
Anfang der laengsten Endung ohne :: ist.
*/
char* extract(char* input) {
int pos = 0;
char* suffix = "";
while (input[pos] != '\0') {
if (input[pos] == ':' && input[pos+1] == ':' ) {
suffix = &input[pos+2];
}
pos++;
}
return suffix;
}
/**
@brief Aufgabe2b: Variation von 2a
@param [in] char* input
@param [out] char** output
Das Ergebnis soll hier nicht als return Wert geliefert werden.
Anstatt wird ein pointer auf einen pointer verwendet.
Wieso reicht ein pointer nicht aus?
*/
void extract2(char* input, char** output) {
*output = extract(input);
}
/**
@brief Aufgabe2c: Weitere Variation von Scannen
@param [in] char* input
@return int
Input ist ein String der aus einer Liste von alphanumerischen Woertern
die durch Leerzeichen (white-space) getrennt sind.
Ihre Aufgabe ist es eine Funktion zu schreiben, die die Anzahl der
Woerter zaehlt.
<p>
Beispiel: "Ha ll o 5"
<p>
Soll liefern 4
*/
/**
*Ueberspringen von Leerzeichen.
*/
void skipWhitespace(char* input, char** output){
while(*input == ' ') {
input++;
}
*output = input;
// return input;
}
int alphanumericChar(char* input, char**output){
int n = 0;
while (*input != '\0' && *input != ' '){
input++;
n++;
}
*output = input;
return n;
}
//int wordSize(char* input){
// int n;
// while (*input != ' ' && *input != '\0'){
// input++;
// n++;
// }
// return n;
//}
int count(char* input) {
int n = 0;
while(*input != '\0'){
//*/*printf("%d\n", n);*/*/
skipWhitespace(input,&input);
if (*input != '\0') {
n++;
alphanumericChar(input,&input);
}
}
return n; // Muss durch Ihre Loesung ersetzt werden
}
/**
@brief Aufgabe2d: Aufsammeln von Woertern. Erweiterung von Aufgabe2c.
@param [in] char* line
@param [in] int maxwords
@param [out] char* words[]
@return int Anzahl aufgesammelter Woerter
Gegeben (als Input) ist ein String der aus einer Liste von alphanumerischen
Woertern die durch Leerzeichen (white-space) getrennt sind.
Ihre Aufgabe ist es die Woerter in einem Array von Strings aufzusammeln.
Das Array von Strings words wird pre-allokiert mit fester Groesse (maxwords).
Die Anzahl der aufgesammelten Woerter wird als return Wert zurueck
geliefert.
*/
int breakIntoWords(char* line, int maxwords, char* words[]) {
int n;
int i = 0;
if (maxwords < count(line)) {
n = maxwords;
} else {
n = count(line);
}
while (i < n ) {
if (*line ==' '){
skipWhitespace(line,&line);
} else {
char* beginningOfWord = line;
int size = alphanumericChar(line,&line);
words[i] = (char*)malloc(sizeof(char) * (size + 1));
memcpy(words[i], beginningOfWord, sizeof(char)*size);
words[i][size] = '\0';
i++;
}
if (*line == '\0'){
break;
}
}
return n; // Ihre Loesung
}
typedef enum {
OK,
FAIL
}Test;
//Test fuer Extract.
Test testExtract(char* input, char* expected){
Test t;
if (*expected == *extract(input)){
t = OK;
} else {
t = FAIL;
}
return t;
}
typedef struct {
char* input;
char* expected;
} TestCaseExtract;
void runTestsExtract(int no, TestCaseExtract test[]) {
Test t;
int i;
for(i=0; i < no; i++) {
printf("Test %d: ", i);
t = testExtract(test[i].input, test[i].expected);
if(OK == t){
printf("OK \n");
}
if(FAIL == t){
printf("FAIL \n");
}
}
}
//Test testExtract2(char* input, char* expected){
// Test t;
// char** output;
// extract2(input, output);
// if (expected == *output){
// t = OK;
// } else {
// t = FAIL;
// }
// return t;
//}
Test testCount(char* input, int expected){
Test t;
if (expected == count(input)){
t = OK;
} else {
t = FAIL;
}
return t;
}
typedef struct {
char* input;
int expected;
} TestCaseCount;
void runTestsCount(int no, TestCaseCount test[]) {
Test t;
int i;
for(i=0; i < no; i++) {
printf("Test %d: ", i);
t = testCount(test[i].input, test[i].expected);
if(OK == t){
printf("OK \n");
}
if(FAIL == t){
printf("FAIL \n");
}
}
}
int main() {
// Ihre Testroutinen
char* input = "Hallo::";
char* input2 = "I::sleep";
char line[] = " I have homework ";
int i = 0;
int nwords;
char* words[10];
char** output = &input;
//Anzahl der Test
const int testNoCount = 9;
const int testNoExtract = 4;
// Intialize TestCase for testExtract
TestCaseExtract testsExtract[4] = {
{"", ""},
{":lo", ""},
{"::", ""},
{"H:all:::o", "o"}
};
// Initialize TestCase for testCount
TestCaseCount testsCount[9] = {
{"", 0},
{"Hallo", 1},
{" Hallo", 1},
{"Hallo ", 1},
{" Hallo ", 1},
{"Hal lo", 2},
{" Hal lo", 2},
{"Hal lo ", 2},
{" Hal lo ", 2}
};
printf("Testing Extract \n");
runTestsExtract(testNoExtract,testsExtract);
printf("Testing Count \n");
runTestsCount(testNoCount,testsCount);
//printf("count: %d \n", count(line));
printf("Example : \n");
printf("Before: %s \n", input);
input = extract(input);
printf("After: %s \n", input);
printf("Test result:");
extract2(input2, output);
printf("input: %s output: %s \n", input2, *output);
//
nwords = breakIntoWords(line, 2, words);
for(i = 0; i < nwords; i++){
printf("%s\n", words[i]);
free(words[i]);
}
/* Beispieltest fuer Aufgabe2d
char line[] = "this is a test";
int i;
int nwords;
char* words[10];
nwords = breakIntoWords(line, 10, words);
for(i = 0; i < nwords; i++)
printf("%s\n", words[i]);
soll liefern
this
is
a
test
*/
}