forked from MostafaTwfiq/C-DataStructures-And-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PriorityQueue.c
415 lines (319 loc) · 11 KB
/
PriorityQueue.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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
#include "../Headers/PriorityQueue.h"
#include "../../../System/Utils.h"
#include "../../../Unit Test/CuTest/CuTest.h"
void swapItems(void **arr, int index1, int index2);
/** This function will take the freeing function address, and the compare function address as a parameters,
* then it will initialize a new priority queue in the memory,
* then the function will return the queue address.
*
* @param freeItem the freeing item function address, that will be called to free the queue items
* @param comp the comparing function address
* @return it will return the initialized queue address
*/
PriorityQueue *priorityQueueInitialization(void (*freeItem)(void *), int (*comp)(const void *, const void *)) {
if (freeItem == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return NULL;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "free function pointer", "priority queue data structure");
exit(INVALID_ARG);
#endif
} else if (comp == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return NULL;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "comparator function pointer", "priority queue data structure");
exit(INVALID_ARG);
#endif
}
PriorityQueue *queue = (PriorityQueue *) malloc(sizeof(PriorityQueue));
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = FAILED_ALLOCATION;
return NULL;
#else
fprintf(stderr, FAILED_ALLOCATION_MESSAGE, "queue", "priority queue data structure");
exit(FAILED_ALLOCATION);
#endif
}
queue->length = 10;
queue->arr = (void **) malloc(sizeof(void *) * queue->length);
if (queue->arr == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = FAILED_ALLOCATION;
return NULL;
#else
fprintf(stderr, FAILED_ALLOCATION_MESSAGE, "queue array", "priority queue data structure");
exit(FAILED_ALLOCATION);
#endif
}
queue->count = queue->fPointer = 0;
queue->freeItem = freeItem;
queue->comp = comp;
return queue;
}
/** This function will take the queue address, and the item address as a parameters,
* then it will push the new item in it's right place in the queue.
*
* Note: if the compare function returned a positive number, that means to swap.
*
* @param queue the queue address
* @param item the new item address
*/
void pQueueEnqueue(PriorityQueue *queue, void *item) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
} else if (item == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "item pointer", "priority queue data structure");
exit(INVALID_ARG);
#endif
}
if (queue->count == queue->length) {
queue->length *= 2;
void **tempArr = (void **) malloc(sizeof(void *) * queue->length);
if (tempArr == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = FAILED_ALLOCATION;
return;
#else
fprintf(stderr, FAILED_ALLOCATION_MESSAGE, "queue array", "priority queue data structure");
exit(FAILED_ALLOCATION);
#endif
}
if (!memcpy(tempArr, queue->arr + queue->fPointer, sizeof(void *) * (queue->count - queue->fPointer))) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = FAILED_COPY;
return;
#else
fprintf(stderr, FAILED_COPY_MESSAGE, "new queue array", "priority queue data structure");
exit(FAILED_COPY);
#endif
}
free(queue->arr);
queue->arr = tempArr;
queue->count -= queue->fPointer;
queue->fPointer = 0;
}
queue->arr[queue->count++] = item;
int index = queue->count - 1;
while (index > queue->fPointer) {
if (queue->comp(queue->arr[index - 1], queue->arr[index]) > 0) {
swapItems(queue->arr, index, index - 1);
} else
break;
index--;
}
}
/** This function will take the queue address, the items array of pointers, and the length of the array as a parameters,
* then it will push all the items in the array to the queue.
*
* @param queue the queue address
* @param items the items array pointer
* @param arrLength the items array length
*/
void pQueueEnqueueAll(PriorityQueue *queue, void **items, int arrLength) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
} else if (items == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = INVALID_ARG;
return;
#else
fprintf(stderr, INVALID_ARG_MESSAGE, "items array pointer", "priority queue data structure");
exit(INVALID_ARG);
#endif
}
for (int i = 0; i < arrLength; i++)
pQueueEnqueue(queue, items[i]);
}
/** This function will take the queue address as a parameter,
* then it will return the rear item address in the queue.
*
* @param queue the queue address
* @return it will return the front item of the queue
*/
void *pQueueDequeue(PriorityQueue *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return NULL;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
} else if (pQueueIsEmpty(queue)) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = EMPTY_DATA_STRUCTURE;
return NULL;
#else
fprintf(stderr, EMPTY_DATA_STRUCTURE_MESSAGE, "priority queue data structure");
exit(EMPTY_DATA_STRUCTURE);
#endif
}
return queue->arr[queue->fPointer++];
}
/** This function will take the queue address as a parameter,
* then it will return the rear item address in the queue,
* without removing the item from the queue.
*
* @param queue the queue address
* @return it will return the front item of the queue
*/
void *pQueuePeek(PriorityQueue *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return NULL;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
} else if (pQueueIsEmpty(queue)) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = EMPTY_DATA_STRUCTURE;
return NULL;
#else
fprintf(stderr, EMPTY_DATA_STRUCTURE_MESSAGE, "priority queue data structure");
exit(EMPTY_DATA_STRUCTURE);
#endif
}
return queue->arr[queue->fPointer];
}
/** This function will take the queue address as a parameter,
* then it will return the number of the items in the queue.
*
* @param queue the queue address
* @return it will return the number of items in the queue
*/
int pQueueGetLength(PriorityQueue *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return -1;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
}
return queue->count - queue->fPointer;
}
/** This function will take the queue address as a parameter,
* then it will return one (1) if the queue is empty,
* other wise it will return zero (0).
*
* @param queue the queue address
* @return it will return one if the queue is empty, other wise it will return zero
*/
int pQueueIsEmpty(PriorityQueue *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return -1;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
}
return queue->count == queue->fPointer;
}
/** This function will take the queue address as a parameter,
* then it will return a double void pointer array that contains a copy of all the queue items.
*
* @param queue the queue address
* @return it will return a double void pointer array consisting of the queue items
*/
void **pQueueToArray(PriorityQueue *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return NULL;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
}
void **arr = (void **) malloc(sizeof(void *) * pQueueGetLength(queue));
if (arr == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = FAILED_ALLOCATION;
return NULL;
#else
fprintf(stderr, FAILED_ALLOCATION_MESSAGE, "to array", "priority queue data structure");
exit(FAILED_ALLOCATION);
#endif
}
for (int i = queue->fPointer; i < queue->count; i++)
arr[i - queue->fPointer] = queue->arr[i];
return arr;
}
/** This function will take the queue address as a parameter,
* then it will destroy and free all the items in the queue,
* without destroying the queue it self.
*
* @param queue the queue address
*/
void clearPQueue(PriorityQueue *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
}
while (queue->count != queue->fPointer)
queue->freeItem(pQueueDequeue(queue));
queue->fPointer = queue->count = 0;
}
/** This function will take the queue address as a parameter,
* then it will destroy and free the queue and all it's items.
*
* @param queue the queue address
*/
void destroyPQueue(void *queue) {
if (queue == NULL) {
#ifdef C_DATASTRUCTURES_ERRORSTESTSTRUCT_H
ERROR_TEST->errorCode = NULL_POINTER;
return;
#else
fprintf(stderr, NULL_POINTER_MESSAGE, "queue pointer", "priority queue data structure");
exit(NULL_POINTER);
#endif
}
clearPQueue(queue);
free(((PriorityQueue *) queue)->arr);
free(queue);
}
/** This function takes a double void array pointer, index one, and index two as a parameters,
* then it will swap the two indices in the array.
*
* Note: this function should be only called by the priority queue functions.
*
* @param arr the PQueue items array address
* @param index1 the first index
* @param index2 the second index
*/
void swapItems(void **arr, int index1, int index2) {
void *temp = arr[index1];
arr[index1] = arr[index2];
arr[index2] = temp;
}