-
Notifications
You must be signed in to change notification settings - Fork 6
/
heapmn.c
150 lines (128 loc) · 3.14 KB
/
heapmn.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
/* heapmn.c - test driver for heap library
*
* HEAP - Heap Library
*
* Copyright (C) 2000 Richard Heathfield
* Eton Computer Systems Ltd
* Macmillan Computer Publishing
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General
* Public License along with this program; if not, write
* to the Free Software Foundation, Inc., 675 Mass Ave,
* Cambridge, MA 02139, USA.
*
* Richard Heathfield may be contacted by email at:
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "heap.h"
typedef struct TASK
{
char JobName[32];
int Priority;
} TASK;
int PrintTasks(const void *Object,
int Tag,
size_t Size,
FILE *fp)
{
const TASK *Task = Object;
fprintf(fp, "Task: %s\n", Task->JobName);
fprintf(fp, "Priority: %d\n", Task->Priority);
fprintf(fp, "Tag: %d\n", Tag);
fprintf(fp, "Size: %u\n", (unsigned)Size);
return 0;
}
int CompareTasks(const void *Left,
int LTag,
const void *Right,
int RTag)
{
const TASK *L = Left;
const TASK *R = Right;
int diff = 0;
if(L->Priority > R->Priority)
{
diff = 1;
}
else if(L->Priority < R->Priority)
{
diff = -1;
}
return diff;
}
int main(void)
{
TASK TaskList[] =
{
{"Run for president", 30},
{"Wash the dog", 20},
{"Take children to school", 15},
{"Write a sonnet", 16},
{"Mow the lawn", 7},
{"Drink coffee", 6},
{"Do Usenet", 7},
{"Read a good book", 17},
{"Check email", 4},
{"Buy flowers", 1},
{"Install new OS", 9},
{"Pour coffee", 5}
};
TASK ThisTask = {0};
size_t NumTasks = sizeof TaskList / sizeof TaskList[0];
size_t i;
HEAP *Heap;
int BadCount;
Heap = HeapCreate(8);
if(NULL != Heap)
{
for(i = 0; i < NumTasks; i++)
{
HeapInsert(Heap,
0,
sizeof TaskList[0],
TaskList + i,
CompareTasks);
}
/* Now let's check that the heap really is a heap. */
printf("Is this a heap?\n");
BadCount = HeapVerify(Heap, CompareTasks, stdout);
if(BadCount > 0)
{
printf("Number of errors: %d\n", BadCount);
}
else
{
puts("Good heap.");
}
puts("Here's a heap dump.");
HeapDump(Heap, PrintTasks, stdout);
while(HeapGetSize(Heap) > 0)
{
HeapDelete(Heap,
NULL,
NULL,
&ThisTask,
CompareTasks);
printf("Time to %s\n", ThisTask.JobName);
}
HeapDestroy(Heap);
}
return 0;
}