-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.c
184 lines (160 loc) · 3.52 KB
/
list.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
/* (c) Yves Lafon <[email protected]> */
/* */
/* $Id: list.c,v 1.2 2007/07/03 14:02:58 ylafon Exp $ */
#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include "types.h"
#include "list.h"
#include "match.h"
#include "cell.h"
/**
* add a Cell at the beginning of the list
*/
void AddCellFirst( TheList, type, cell)
list **TheList;
int type;
void *cell;
{
list *new_link;
new_link = (list *) malloc(sizeof(list));
new_link->type = type;
new_link->cell = cell;
new_link->next = *TheList;
new_link->prev = NULL;
if (*TheList)
(*TheList)->prev = new_link;
*TheList = new_link;
}
/**
* add a Cell at the end of the list
*/
void AddCellLast( TheList, type, cell)
list **TheList;
int type;
void *cell;
{
list *new_link,*last_link;
new_link = (list *) malloc(sizeof(list));
new_link->type = type;
new_link->cell = cell;
new_link->next = NULL;
if (*TheList) {
last_link = *TheList;
while (last_link->next)
last_link = last_link->next;
last_link->next = new_link;
new_link->prev = last_link;
} else {
new_link->prev = NULL;
*TheList = new_link;
}
}
/**
* find the item in the list containing the matching cell
*/
list *FindCell(TheList, cell, compare_func)
list **TheList;
void *cell;
int (*compare_func) PARAM2(void *, void *);
{
int ok;
list *find_link,*found_link;
ok = 0;
found_link = NULL;
for (find_link = *TheList; !ok && find_link; find_link = find_link->next) {
ok = compare_func(cell, find_link->cell);
if (ok)
found_link = find_link;
}
return(found_link);
}
/**
* find the address of the item in the list containing the matching cell
*/
list **FindCellAddr(TheList, cell, compare_func)
list **TheList;
void *cell;
int (*compare_func) PARAM2(void *, void *);
{
int ok;
list **find_link,**found_link;
ok = 0;
found_link = NULL;
for (find_link = TheList; !ok && *find_link;
find_link = &((*find_link)->next)) {
ok = compare_func(cell, (*find_link)->cell);
if (ok)
found_link = find_link;
}
return(found_link);
}
/**
* free a list item
*/
void FreeLink(the_link)
list **the_link;
{
list *TheLink;
if (!the_link)
return;
TheLink = *the_link;
if (TheLink) {
if (TheLink->next)
TheLink->next->prev = TheLink->prev;
if (TheLink->prev)
TheLink->prev->next = TheLink->next;
else
*the_link = TheLink->next;
FreeCell(TheLink->type,TheLink->cell);
free(TheLink);
}
}
/**
* "eat" a list item, but don't free it
*/
void SwallowLink(TheLink)
list *TheLink;
{
if (TheLink->next)
TheLink->next->prev = TheLink->prev;
if (TheLink->prev)
TheLink->prev->next = TheLink->next;
}
/**
* free the whole list
*/
void FreeList(TheList)
list **TheList;
{
list *tmp_link,*next_link;
next_link = *TheList;
while (next_link) {
tmp_link = next_link;
next_link = next_link->next;
FreeCell(tmp_link->type, tmp_link->cell);
free(tmp_link);
}
*TheList = NULL;
}
/**
* put the first element of the list in the last position
*/
void LoopList(TheList)
list **TheList;
{
list *last_link,*new_list;
if (*TheList) {
if ((*TheList)->next) {
new_list = (*TheList)->next;
last_link = *TheList;
while (last_link->next)
last_link = last_link->next;
last_link->next = *TheList;
(*TheList)->next = NULL;
(*TheList)->prev = last_link;
new_list->prev = NULL;
*TheList = new_list;
}
}
}