-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexclude.c
56 lines (49 loc) · 1.5 KB
/
exclude.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
#include <stdio.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
char *characterTable = NULL;
void sizeCharacterTableForasciiSymbol(unsigned ash) {
int h = (int)ash;
int thresh = sizeof(characterTable);
if (h >= thresh) {
characterTable = realloc(characterTable, sizeof(char) * h);
}
}
char * exclude(char *exclude, char *fromThese) {
characterTable = malloc(sizeof(char *));
int indicesCount = 0;
int i;
for (i=0; exclude[i]!='\0'; i++) {
char fromThis = exclude[i];
if (fromThis == *" ") {
continue;
}
unsigned asciiValue = (int)fromThis;
sizeCharacterTableForasciiSymbol(asciiValue);
characterTable[asciiValue] = fromThis;
}
char *survived = malloc(i*(sizeof(char)) + 1);
indicesCount = 0;
i = 0;
for (i=0; fromThese[i]!='\0'; i++) {
char fromTheuse = fromThese[i];
unsigned asciiValue = (int)fromTheuse;
char compare = characterTable[asciiValue];
if (fromTheuse != compare) {
survived[indicesCount] = fromTheuse;
indicesCount++;
}
}
free(characterTable);
return realloc(survived, indicesCount*sizeof(char));//survived;
}
int main() {
char *ex = "aBC d f F G nmlt q Q R o ST uvz";// = exa;
char *fr = "abcdefgHIJKLMNOPQRSTUVwxyz";// = fro;
char *e = exclude(ex, fr);
printf("exclude: %s\n", ex);
printf("from: %s\n", fr);
printf("\n----\n");
printf("result: %s\n", e);
}