-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircular_single_linked_list_with list of cars.c
449 lines (341 loc) · 9.74 KB
/
circular_single_linked_list_with list of cars.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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//declaration des structures
typedef struct Persone {
char cin[15] ;
char name[20];
char prenom[20];
}Persone;
typedef struct voiture {
char matricule[25];
char marque[50];
int prix_du_jour;
int duree_location;
struct voiture *nxt;
}voiture;
typedef struct location {
char Identifiacteur_location[25];
voiture *voiture_louee ;
Persone Client;
struct location *next_location;
//struct location *prev_location; pour doublement chainee
}location;
//fin de declaration structs
//les functions
location *creat_lo_node();
voiture *creat_v_node();
location *Ajouter_location(location *Lc);
int calculer_prix_total(location *Lc);//returne le prix a payer par le client cette fonction sera appeler dans enregistrer et afficher les locations
void find_print_prix(location *Lc);// fonction additionelle pour afficher le price pour quellque soit le cin
void Afficher_liste_locations(location *Lc); // printf toutes les locations
FILE *Enregistrer_location(location *Lc);// comme afficher mais dans un fichier utilisant fprintf
void Rechercher_location(location *Lc);//recherche une location et l'affiche.
location *location_return(location *Lc);//fonction recherche puis returne l'adress de location
location *Supprimer_location(location *Lc);//derefrence and free()
void Menu_general(){
printf("1. ajouter une location.\n");
printf("2. Afficher toutes les locations.\n");
printf("3. Calculer puis afficher le prix total d'un client.\n");
printf("4. Rechercher location.\n ");
printf("5. Enregistrer une location existante dans un fichier.\n ");
printf("6. Supprimer location.\n");
printf("7. quiter le program.\n");
}
//end fonctions
int main(){
int m;
location *Lc= NULL;
FILE *sps ;
while (1) /*on reste toujour dans while jusque l utulisateur choissisera case 7 pour quiter tous le programe*/ {
Menu_general();
scanf("%d",&m);
switch (m){
case 1:
Lc =Ajouter_location(Lc);
break;
case 2:
Afficher_liste_locations(Lc);
break;
case 3:
find_print_prix(Lc);
break;
case 4:
Rechercher_location(Lc);
break;
case 5:
sps = Enregistrer_location(Lc);
break;
case 6:
Lc = Supprimer_location(Lc);
break;
case 7:
printf("\nAttention : si vous quitter le programe toutes les locations enregistre seront perdus !! \n");
printf("Vous voulez vraiment quitter ? :\n*tappez le nombre \"1\" si Oui \n*tappez le nombre \"2\" si Non\n:");
int fin;
scanf("%d",&fin);
if (fin == 1)
{
return 0;
}else{ fin = 0;}
break;
default:
printf("\n \n ****invalid choice***** \n \n");
}//end switch case
}//end while loop
return 0;
}// end main()
/***functions declaration****/
location *creat_lo_node(){
location *t = malloc(sizeof(location));
return t;
}
/*
*
*/
voiture *creat_v_node(){
voiture *tm = malloc(sizeof(voiture));
return tm;
}
/*
*
*/
location *Ajouter_location(location *Lc){
int N,n=0;
location *h = creat_lo_node();
struct voiture *head =NULL;
struct voiture *p ;
printf("\n Entrer un indentificateur pour cette location \"un referance de 25 character au maximum\" :");
scanf("%s",h->Identifiacteur_location);
printf("\n Entrer le nom du client :");
scanf("%s",h->Client.name);
printf("\n Entrer le prenom du client :");
scanf("%s",h->Client.prenom);
printf("\n Entrer le CIN du client :");
scanf("%s",h->Client.cin);
printf("\n Combier de voiture ce client veut louer :");
scanf("%d",&N);
while (n != N)
{
voiture *temp = creat_v_node();
printf("\n Entrer la matricule de la voiture N%d :",n+1);
scanf("%s",temp->matricule);
printf("\n Entrer la marque de la voiture N%d :",n+1);
scanf("%s",temp->marque);
printf("\n Entrer le prix du jours de la voiture N%d :",n+1);
scanf("%d",&(temp->prix_du_jour));
printf("\n Entrer Combien ce client va louer la voiture N%d :",n+1);
scanf("%d",&(temp->duree_location) );
temp->nxt = NULL;
if (head == NULL)
{
head = temp;
}
else{
p=head; //p copy temporaire de head
while (p->nxt != NULL){
p=p->nxt; // if the next isnt null pass to the next node.
}
p->nxt= temp; // when the nxt is null take the node temp jst been made
}
n++; // repeter selon le nombre de voiture le client va louer
}
h->voiture_louee = head; // enregistrant head dans location.voiture_louee maintenant chaque location a un client et N voitures (les voitures sont simplement chainee !!) .
/*-----------
--*/
if (Lc == NULL){
h->next_location = h; // h est un node de struct location plain mais seule qui point sur luis meme si c est la premier fois creant une location
Lc = h;
}
else {
location *s=Lc;
while (s->next_location != Lc)
{
s=s->next_location;
}
h->next_location = Lc;
s->next_location = h;
}
return Lc;//Lc est le head du list
}
/*
*
*
*
*
*/
/* printf le prix a payer par un seul client */
void find_print_prix(location *Lc) {
location *Fc =Lc;
char c[15];
if (Fc == NULL ){
printf("Fc == NULL");
}
else {
printf("\nEntrer CIN :");
scanf("%s",c);
while (strcmp(Fc->Client.cin,c)!= 0){
Fc =Fc->next_location;
}
if(Fc->voiture_louee == NULL){
printf("Fc->voiture_louee ==NULL");
}else {
int a=0;
voiture *vv = NULL;
vv = (struct voiture *) Fc->voiture_louee ;
while ( vv != NULL /*Fc->voiture_louee->nxt !=NULL*/){
int dd=vv->prix_du_jour;
int bd =vv->duree_location;
a = a + (dd)*(bd) ;
vv = vv->nxt;
//Fc->voiture_louee = Fc->voiture_louee->nxt;
}
printf("\n**Ce client doit payer %d DH\n",a);
}
}
} // end find_print_prix()
/*
*
*/
int calculer_prix_total(location *Lc ) {
location *Fc =Lc;
if (Fc == NULL ){
printf("list vide == NULL");
}
else {
int a=0;
voiture *vv = NULL;
vv = (struct voiture *) Fc->voiture_louee ;
while ( vv != NULL /*Fc->voiture_louee->nxt !=NULL*/){
int dd=vv->prix_du_jour;
int bd =vv->duree_location;
a = a + (dd)*(bd) ;
vv = vv->nxt;
//Fc->voiture_louee = Fc->voiture_louee->nxt;
}
return a;
}
} // end ()
/*
*
*
*/
void Afficher_liste_locations(location *Lc){
location *ff = Lc;
do
{
printf("%s \n Informations sur le client : \n CIN du client : %s \n Nom du client : %s \n Prenom du client : %s \n \n Informations sur les voitures louées :\n Matricule de la voiture\tMarque de la voiture\tPrix par jour\tDurée de la location \n",ff->Identifiacteur_location,ff->Client.cin,ff->Client.name,ff->Client.prenom);
voiture *vv = NULL;
vv = (struct voiture *) ff->voiture_louee ;
while (vv != NULL)
{
printf("%s\t%s\t%d\t%d\n",vv->matricule,vv->marque,vv->prix_du_jour,vv->duree_location);
vv = vv->nxt;
}
printf("Prix total a payer par le client : %d DH \n\n",calculer_prix_total(ff));
ff=ff->next_location;
} while (ff != Lc);
}
/*
*
*
*/
//trouve une location et la printf
void Rechercher_location(location *Lc){
location *Fc =Lc;
char c[15];
if (Fc == NULL ){
printf("Fc == NULL");
}
else {
printf("entrer CIN :");
scanf("%s",c);
while (strcmp(Fc->Client.cin,c)!= 0){
Fc =Fc->next_location;
}
printf("%s \n Informations sur le client : \n CIN du client : %s \n Nom du client : %s \n Prenom du client : %s \n \n Informations sur les voitures louees :\n Matricule de la voiture\tMarque de la voiture\tPrix par jour\tDurée de la location \n",Fc->Identifiacteur_location,Fc->Client.cin,Fc->Client.name,Fc->Client.prenom);
voiture *vv = NULL;
vv = (struct voiture *) Fc->voiture_louee ;
while (vv != NULL)
{
printf("%s\t%s\t%d\t%d\n",vv->matricule,vv->marque,vv->prix_du_jour,vv->duree_location);
vv = vv->nxt;
}
printf("Prix total a payer par le client : %d DH \n\n",calculer_prix_total(Fc));
}
}
/*
*
*
*
*/
//trouve une certainne location puis return la
location *location_return(location *Lc){
location *Fc =Lc;
char c[15];
if (Fc == NULL ){
printf("Fc == NULL");
}
else {
printf("entrer CIN :");
scanf("%s",c);
while (strcmp(Fc->Client.cin,c)!= 0){
Fc =Fc->next_location;
}
}
return Fc;
}
/*
enregistre location dans un fichier
*/
FILE *Enregistrer_location(location *Lc){
location *ff =location_return(Lc) ;
char n[20];
printf("\nwrite the file name with the extention .txt");
scanf("%s",n);
FILE *regularTxt = NULL;
regularTxt = fopen(n, "a");
if (!regularTxt){
printf("****error with regtxt");
}
fprintf(regularTxt,"Identificateur de la location: %s \n Informations sur le client : \n CIN du client : %s \n Nom du client : %s \n Prenom du client : %s \n \n Informations sur les voitures louées :\n Matricule de la voiture\tMarque de la voiture\tPrix par jour\tDurée de la location \n",ff->Identifiacteur_location,ff->Client.cin,ff->Client.name,ff->Client.prenom);
voiture *vv ;
vv = (struct voiture *) ff->voiture_louee ;
while (vv != NULL)
{
fprintf(regularTxt," %s\t\t\t\t%s\t\t\t%d\t\t%d\n",vv->matricule,vv->marque,vv->prix_du_jour,vv->duree_location);
vv = vv->nxt;
}
fprintf(regularTxt,"\n\nPrix total a payer par le client : %d DH \n\n",calculer_prix_total(ff));
fclose(regularTxt);
return regularTxt;
}
location *Supprimer_location(location *Lc){
printf("veuillez entrer le CIN d'utilisateur a supprimer ci-dessous:\n");
location *sp = location_return(Lc);// recherche node of cin then return it we need to delete it
if (sp==Lc)//if the sp == head
{
location *p= Lc;
while (p->next_location != Lc)
{
p=p->next_location;
/* we need to find the node before sp wich is the last node or the node befor the *head Lc */
}
p->next_location=p->next_location->next_location; // skipping the sp
Lc=p->next_location; // moving the head to the next if next null so the list have 1 node and the new head is null
free(sp);//free the sp
}else{//if the sp not the head
location *p = sp;
//we jst took the node we need to delete
while (p->next_location != sp)
{
p=p->next_location;
/* we just found the node behind sp */
}
//we will skipp it in the list
p->next_location =p->next_location->next_location;
//now we will free the sp
free(sp);
}
return Lc;
}