-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmost_appear_n.c
309 lines (270 loc) · 5.84 KB
/
most_appear_n.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
typedef struct tagPhoneNumber
{
struct tagPhoneNumber *next;
char Number[12];
int Count;
}PhoneNumber;
typedef int (*pfKey)(char *key);
typedef int (*pfCmp)(char *key, PhoneNumber *node);
typedef struct taghash
{
pfKey HashKey;
pfCmp HashCmp;
PhoneNumber *Bucket[1024];
}hash_t;
int hash_key(char *key);
int hash_cmp(char *key, PhoneNumber *node);
hash_t g_HashBucket = {hash_key, hash_cmp, {NULL}};
int g_heapsize = 0;
int g_heapindex = 1;
int heap_left(int parent)
{
int left = 0;
if(parent <= g_heapsize/2)
{
left = parent*2;
}
return left;
}
int heap_right(int parent)
{
int right = 0;
if(parent <= g_heapsize/2)
{
right = parent*2 + 1;
if(right>g_heapsize)
{
right = 0;
}
}
return right;
}
void heap_exchange(PhoneNumber array[], int i, int j)
{
PhoneNumber tmp;
assert(NULL != array);
tmp = array[i];
array[i] = array[j];
array[j] = tmp;
return;
}
void heap_min_ify(PhoneNumber array[], int index)
{
int left, right, lowest;
assert(NULL != array);
if((index > g_heapsize/2) || (index==0))
{
return;
}
left = heap_left(index);
right = heap_right(index);
lowest = index;
if((array[lowest].Count > array[left].Count) && (left != 0))
{
lowest = left;
}
if((array[lowest].Count > array[right].Count) && (right != 0))
{
lowest = right;
}
if(lowest != index)
{
heap_exchange(array, index, lowest);
heap_min_ify(array, lowest);
}
return;
}
void heap_build(PhoneNumber array[])
{
int index;
assert(NULL != array);
for(index=g_heapsize/2; index>0; index--)
{
heap_min_ify(array, index);
}
return;
}
void find_top(PhoneNumber array[], hash_t *hash)
{
int next, key;
PhoneNumber *head, *tmp;
assert(NULL != array);
assert(NULL != hash);
if(g_heapindex <= g_heapsize)
{
for(key=0; key<1024; key++)
{
tmp = g_HashBucket.Bucket[key];
while((NULL != tmp) && (g_heapindex<=g_heapsize))
{
array[g_heapindex] = *tmp;
tmp = tmp->next;
g_heapindex++;
}
if(g_heapindex = g_heapsize+1)
{
break;
}
else
{
return;
}
}
heap_build(array);
}
for(key=0; key<1024; key++)
{
tmp = g_HashBucket.Bucket[key];
while(NULL != tmp)
{
if(tmp->Count > array[1].Count)
{
array[1] = *tmp;
heap_min_ify(array, 1);
}
tmp = tmp->next;
}
}
return;
}
void file_distribute(FILE *in, int count, FILE *out[])
{
char buf[256];
char *ptr;
int tmpNO, index;
assert(NULL != in);
assert(NULL != out);
while(NULL != (ptr=fgets(buf, sizeof(buf), in)))
{
tmpNO = atoi(buf);
index = tmpNO%count;
fprintf(out[index], "%s", buf);
}
return;
}
int hash_key(char *key)
{
int tmp;
assert(NULL != key);
tmp = atoi(key);
return tmp%1024;
}
int hash_cmp(char *key, PhoneNumber *node)
{
return strcmp(key, node->Number);
}
void appear_count(FILE *fp)
{
char buf[256];
char *ptr;
int key;
PhoneNumber *head, *pre, *node;
assert(NULL != fp);
while(NULL != (ptr=fgets(buf, sizeof(buf), fp)))
{
buf[8] = '\0';
key = g_HashBucket.HashKey(buf);
head = g_HashBucket.Bucket[key];
pre = head;
while(NULL != pre)
{
if(0 == g_HashBucket.HashCmp(buf, pre))
{
break;
}
pre = pre->next;
}
if(NULL == pre)
{
node = malloc(sizeof(PhoneNumber));
if(NULL == node)
{
return;
}
memset(node, 0, sizeof(PhoneNumber));
memcpy(node->Number, buf, sizeof(node->Number));
node->Count = 1;
node->next = head;
g_HashBucket.Bucket[key] = node;
}
else
{
pre->Count++;
}
}
return;
}
void hash_destroy()
{
int index;
PhoneNumber *CurNode, *next;
for(index=0; index<1024; index++)
{
CurNode = g_HashBucket.Bucket[index];
while(NULL != CurNode)
{
next = CurNode->next;
free(CurNode);
CurNode = next;
}
g_HashBucket.Bucket[index] = NULL;
}
return;
}
int main(int argc, char *argv[])
{
int num, FileCount, index;
PhoneNumber *tmp, *array;
FILE *in, **out;
char buf[128];
assert(3 == argc);
in = fopen(argv[1], "r");
FileCount = 16;
out = malloc(sizeof(FILE *)*FileCount);
if(NULL == out)
{
return -1;
}
num = atoi(argv[2]);
g_heapsize = num;
array = malloc(sizeof(PhoneNumber)*(num+1));
if(NULL == array)
{
free(out);
return -1;
}
memset(array, 0, sizeof(array));
for(index=0; index<FileCount; index++)
{
sprintf(buf, "%d.txt", index);
out[index] = fopen(buf, "w+");
if(NULL == out[index])
{
return -1;
}
}
file_distribute(in, FileCount, out);
for(index=0; index<FileCount; index++)
{
rewind(out[index]);
appear_count(out[index]);
find_top(array, &g_HashBucket);
hash_destroy();
}
for(index=1; index<=g_heapsize; index++)
{
printf("%s %d\n", array[index].Number, array[index].Count);
}
fclose(in);
for(index=0; index<FileCount; index++)
{
fclose(out[index]);
}
free(out);
free(array);
return 0;
}