-
Notifications
You must be signed in to change notification settings - Fork 0
/
linked_lsit.c
298 lines (252 loc) · 4.58 KB
/
linked_lsit.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
// this program manupilate a linked list
// creating list , adding nodes in the begining/end or in in sorted list
// deletting, searching ..
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
struct Maillon{
int val ;
struct Maillon *suiv ;
};
typedef struct Maillon * ListeEntier;
// Cr�ation d'une liste vide
void initialiser(ListeEntier *L) {
*L = NULL;
}
// Ajout de x au d�but de L
void AjoutDebut(ListeEntier *L, int x) {
ListeEntier node;
node = malloc(sizeof(ListeEntier));
if(node != NULL){
node->suiv = NULL;
node->val = x;
}
if (*L == NULL)
*L = node;
else
{
node->suiv = *L;
*L = node;
}
}
// Ajout de x � la fin de L
void AjoutFin(ListeEntier *L, int x) {
ListeEntier node, tmp;
node = malloc(sizeof(ListeEntier));
if (node != NULL){
node->suiv = NULL;
node->val = x;
}
if (*L == NULL)
*L = node;
else
{
tmp = *L;
while (tmp->suiv != NULL)
{
tmp = tmp->suiv;
}
tmp->suiv = node;
}
}
// Ajout de x dans une liste tri�e
void insertion_triee(ListeEntier* L, int x) {
ListeEntier node, prev, next;
node = malloc(sizeof(ListeEntier));
if(node != NULL){
node->suiv = NULL;
node->val = x;
}
// si liste est vide
if (*L == NULL)
*L = node;
// si debut
else{
if (x < (*L)->val ){
node->suiv = *L;
*L = node;
}
else
{
prev = *L;
while ((prev->suiv != NULL) && (x >= prev->val))
{
next = prev;
prev = prev->suiv;
}
if (x > prev->val){
// si fin
prev->suiv = node;
}
else
{ // si miliue
next->suiv = node;
node->suiv = prev;
}
}
}
}
// Suppression du premier �l�ment de L
void SuppressionDebut(ListeEntier *L) {
ListeEntier tmp;
if (*L == NULL)
printf("Liste vide");
else
{
tmp = *L;
if (tmp->suiv == NULL){
*L = NULL;
}
else{
(*L) = (*L)->suiv;
free(tmp);
}
printf("Maillon supprimee\n");
}
}
// Suppression du dernier �l�ment de L
void SuppresionFin(ListeEntier *L) {
ListeEntier suppr, prev;
int n;
if (*L == NULL || (*L)->suiv == NULL){
printf("liste vide");
*L = NULL;
}
else{
suppr = *L;
while (suppr->suiv != NULL)
{
prev = suppr;
suppr = suppr->suiv;
if (suppr->suiv == NULL)
{
prev->suiv = NULL;
}
}
free(suppr);
}
}
// Suppression de la premi�re occurrence de x dans L
void suppression(ListeEntier* L, int x) {
ListeEntier prev, next;
next = *L;
if ((*L)->val == x && (*L)->suiv == NULL)
*L = NULL;
else
{
while(next->suiv != NULL && next->val != x){
prev = next;
next = next->suiv;
}
// debut
if (next->val == (*L)->val){
(*L) = (*L)->suiv;
free(next);
}
else
{ // fin
if (next->suiv == NULL)
{
prev->suiv = NULL;
free(next);
}
else
{
prev->suiv = next->suiv;
free(next);
}
}
}
}
// Recherche version1 retourne 1 (vrai) si appartient � L, 0 (faux) sinon
int RechercheV1(ListeEntier L, int x) {
ListeEntier tmp;
tmp = L;
while (tmp != NULL )
{
if (tmp->val == x){
printf("val : %d\n", tmp->val);
return 1;
}
else
return 0;
}
tmp = tmp->suiv;
}
// Recherche version2 retourne l'adresse du maillon qui contient x
ListeEntier Recherche2(ListeEntier L, int x){
ListeEntier tmp;
tmp = L;
while (tmp != NULL){
if (tmp->val == x)
break;
tmp = tmp->suiv;
}
return tmp;
}
// Affichage de tous les �l�ments de L
void AfficherListe(ListeEntier L) {
ListeEntier tmp ;
tmp=L ;
while (tmp!= NULL)
{
printf("%d || ",tmp->val);
tmp=tmp->suiv ;
}
printf("\n");
}
// Lib�rer L de la m�moire
void LibererListe(ListeEntier *L) {
ListeEntier tmp;
while(*L != NULL){
tmp = (*L)->suiv;
free(*L);
(*L) = tmp;
}
free(*L);
}
// Calcul du nombre d'�l�ments de L (it�rative ou r�cursive)
int nb_occurrences(ListeEntier L, int x) {
int occ = 0;
ListeEntier tmp;
tmp = L;
while(tmp != NULL){
if (tmp->val == x)
occ++;
tmp = tmp->suiv;
}
return occ;
}
int main(void){
ListeEntier L;
int i;
int x;
// Implementer et tester les fonction une � une (afficher le contenu pour voir le r�sultat)
printf("creating list ..\n");
initialiser(&L);
sleep(1);
if(L != NULL)
return 1;
for (i = 5; i >= 1; i--)
AjoutDebut(&L, i);
//AfficherListe(L);
//SuppresionFin(&L);
//insertion_triee(&L, 7);
/*
// recherche 1 & 2
if (RechercheV1(L, 1) == 100)
printf("found\n");
else
printf("not found\n");
ListeEntier r = Recherche2(L , 20);
if (r == NULL)
printf("not found\n");
else
printf("nbr : %d\n", r->val);
*/
AfficherListe(L);
// suppression(&L, 5);
// SuppressionDebut(&L);
// AfficherListe(L);
LibererListe(&L);
}