-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoppingmall.c
1404 lines (1171 loc) · 33.2 KB
/
shoppingmall.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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Created by suvom on 17-02-2021.
//
#include "shoppingmall.h"
#include "settings.h"
#include "locals.h"
///-------------------------------------------File management---------------------------------------------------------------
//Function: file_empty_check
//Description: checks if a given file is empty or not
//Input param: char*
//Return Type: int
int file_empty_check(char *filename)
{
// Declaring "stat" a system call to know about content of file.
struct stat filestat;
stat(filename, &filestat);
//check size of file and return appropriate status.
if (filestat.st_size == 0)
{
return FILE_EMPTY_ERROR;
}
else
{
return SUCCESS;
}
}
//Function: load
//Description: load all the given txt files into respective strings
//Input param: NULL
//Return Type: int
int load()
{
///----------------------------------------Start of load of employee----------------------------------------------
// Use a file pointer to open various files to load the values
FILE *fp;
//Local variables
int index = 0;
int key_index = 0;
int status = 0;
int file_status = 0;
//check whether employee.txt file is empty or not.
file_status = file_empty_check("employee.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
//check whether employee_prop.txt file is empty or not.
file_status = file_empty_check("employee_prop.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
//check whether employee_number.txt file is empty or not
file_status = file_empty_check("employee_number.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
// Open the employee_number file to read the number of keywords
fp = fopen("employee_number.txt","r");
if (fp == NULL)
{
return FAILURE;
}
fscanf(fp, "%d", &employee_row);
if (employee_row <= 0)
{
return FAILURE;
}
fclose(fp);
// Open the employee_prop file to read the number of properties
fp = fopen("employee_prop.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
fscanf(fp, "%d", &employee_col);
if (employee_col <= 0)
{
return FAILURE;
}
fclose(fp);
// Open the employee to read the available inventory details
fp = fopen("employee.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
key_index=0;
// Load the details from file to employee_str
while (!feof(fp))
{
for (index = 0; index < employee_col; index++)
{
fscanf(fp, "%s ", employee_str[key_index][index]);
}
key_index++;
}
key_index=0;
fclose(fp);
// printf("1\n");
///-------------------------------------------------End of load of employee-----------------------------------------
///------------------------------------------------Start of load of shop--------------------------------------------
//check whether shop.txt file is empty or not.
file_status = file_empty_check("shop.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
//check whether shop_prop.txt file is empty or not.
file_status = file_empty_check("shop_prop.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
//check whether shop_number.txt file is empty or not
file_status = file_empty_check("shop_number.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
// Open the shop_number file to read the number of keywords
fp = fopen("shop_number.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
fscanf(fp, "%d", &shop_row);
if (shop_row <= 0)
{
return FAILURE;
}
fclose(fp);
// Open the shop_prop file to read the number of properties
fp = fopen("shop_prop.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
fscanf(fp, "%d", &shop_col);
if (shop_col <= 0)
{
return FAILURE;
}
shop_col=6;
fclose(fp);
// Open the shop to read the available inventory details
fp = fopen("shop.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
// Load the details from file to shop_str
while (!feof(fp))
{
for (index = 0; index < shop_col; index++) {
fscanf(fp, "%s ", shop_str[key_index][index]);
}
key_index++;
}
key_index=0;
fclose(fp);
// printf("1\n");
///------------------------------------------------------End of shop-------------------------------------------------
///------------------------------------------------------End of customer-------------------------------------------------
//check whether customer.txt file is empty or not.
file_status = file_empty_check("customer.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
//check whether customer_prop.txt file is empty or not.
file_status = file_empty_check("customer_prop.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
//check whether customer_number.txt file is empty or not
file_status = file_empty_check("customer_number.txt");
if (file_status == FILE_EMPTY_ERROR)
{
return FAILURE;
}
// Open the customer_number file to read the number of keywords
fp = fopen("customer_number.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
fscanf(fp, "%d", &customer_row);
if (customer_row <= 0)
{
return FAILURE;
}
fclose(fp);
// Open the customer_prop file to read the number of properties
fp = fopen("customer_prop.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
fscanf(fp, "%d", &customer_col);
if (customer_col <= 0)
{
return FAILURE;
}
fclose(fp);
// Open the customer to read the available inventory details
fp = fopen("customer.txt", "r");
if (fp == NULL)
{
return FAILURE;
}
// Load the details from file to main memory
while (!feof(fp))
{
for (index = 0; index < customer_col; index++)
{
fscanf(fp, "%s ", customer_str[key_index][index]);
}
key_index++;
}
key_index=0;
fclose(fp);
// printf("1\n");
///----------------------------------------------------End of customer----------------------------------------------
return SUCCESS;
}
//Function: employee_memory_deallocation
//Description: deallocates all the memory allocated for employee string
//Input param: NULL
//Return Type: NULL
void employee_memory_deallocation()
{
// Local variables
int index1;
int index2;
key_size = key_size + employee_row;
property_size = property_size + employee_col;
for (index1 = 0; index1 < property_size; index1++)
{
for (index2 = 0; index2 < key_size; index2++)
{
free(employee_str[index1][index2]);
}
free(employee_str[index1]);
}
free(employee_str);
}
//Function: shop_memory_deallocation
//Description: deallocates all the memory allocated for shop string
//Input param: NULL
//Return Type: NULL
void shop_memory_deallocation()
{
// Local variables
int index1;
int index2;
key_size = key_size + shop_row;
property_size = property_size + shop_col;
for (index1 = 0; index1 < property_size; index1++)
{
for (index2 = 0; index2 < key_size; index2++)
{
free(shop_str[index1][index2]);
}
free(shop_str[index1]);
}
free(shop_str);
}
//Function: customer_memory_deallocation
//Description: deallocates all the memory allocated for customer string
//Input param: NULL
//Return Type: NULL
void customer_memory_deallocation()
{
// Local variables
int index1;
int index2;
key_size = key_size + customer_row;
property_size = property_size + customer_col;
for (index1 = 0; index1 < property_size; index1++)
{
for (index2 = 0; index2 < key_size; index2++)
{
free(customer_str[index1][index2]);
}
free(customer_str[index1]);
}
free(customer_str);
}
//Function: dump
//Description: dumps all the string values back to their respective files
//Input param: NULL
//Return Type: NULL
int dump()
{
// Local variables
int spec_index;
int key_index;
// File pointer
FILE *fp;
FILE *tfp;
// Open the file in write mode and dump the latest key count
fp = fopen("employee_number.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "employee_number.txt\n");
fprintf(tfp, "%d", employee_row);
fclose(tfp);
return FAILURE;
}
fprintf(fp, "%d", employee_row);
fclose(fp);
// Open the file in write mode and dump the latest properties count
fp = fopen("employee_prop.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "employee_prop.txt\n");
fprintf(tfp, "%d", employee_col);
fclose(tfp);
return FAILURE;
}
fprintf(fp, "%d", employee_col);
fclose(fp);
// Open the inventory file and update the values from the main memory
// Into the secondary storage
fp = fopen("employee.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "inventory_file.txt\n");
for (spec_index = 0; spec_index <= employee_row; spec_index++)
{
for (key_index = 0; key_index <= employee_col; key_index++)
{
fprintf(tfp, "%s ", employee_str[spec_index][key_index]);
}
fprintf(tfp, "%s", "\n");
}
fclose(tfp);
return FAILURE;
}
for (spec_index = 0; spec_index <= employee_row; spec_index++)
{
for (key_index = 0; key_index <= employee_col; key_index++)
{
fprintf(fp, "%s ", employee_str[spec_index][key_index]);
}
fprintf(fp, "%s", "\n");
}
fclose(fp);
// Free the memory for inventory
employee_memory_deallocation();
///------------------------------------------------------------------------
// Open the file in write mode and dump the latest key count
fp = fopen("shop_number.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "shop_number.txt\n");
fprintf(tfp, "%d", shop_row);
fclose(tfp);
return FAILURE;
}
fprintf(fp, "%d", shop_row);
fclose(fp);
// Open the file in write mode and dump the latest properties count
fp = fopen("shop_prop.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "shop_prop.txt\n");
fprintf(tfp, "%d", shop_col);
fclose(tfp);
return FAILURE;
}
fprintf(fp, "%d", shop_col);
fclose(fp);
// Open the inventory file and update the values from the main memory
// Into the secondary storage
fp = fopen("shop.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "shop.txt\n");
for (spec_index = 0; spec_index <= shop_row; spec_index++)
{
for (key_index = 0; key_index <= shop_col; key_index++)
{
fprintf(tfp, "%s ", shop_str[spec_index][key_index]);
}
fprintf(tfp, "%s", "\n");
}
fclose(tfp);
return FAILURE;
}
for (spec_index = 0; spec_index <= shop_row; spec_index++)
{
for (key_index = 0; key_index <= shop_col; key_index++)
{
fprintf(fp, "%s ", shop_str[spec_index][key_index]);
}
fprintf(fp, "%s", "\n");
}
fclose(fp);
// Free the memory for inventory
shop_memory_deallocation();
///------------------------------------------------------------------------
// Open the file in write mode and dump the latest key count
fp = fopen("customer_number.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "customer_number.txt\n");
fprintf(tfp, "%d", customer_row);
fclose(tfp);
return FAILURE;
}
fprintf(fp, "%d", customer_row);
fclose(fp);
// Open the file in write mode and dump the latest properties count
fp = fopen("customer_prop.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "customer_prop.txt\n");
fprintf(tfp, "%d", customer_col);
fclose(tfp);
return FAILURE;
}
fprintf(fp, "%d", customer_col);
fclose(fp);
// Open the inventory file and update the values from the main memory
// Into the secondary storage
fp = fopen("customer.txt", "w+");
if (fp == NULL)
{
tfp = fopen("tempfile.txt", "a+");
fprintf(tfp, "%s", "\nFollowing contents to be added in said file");
fprintf(tfp, "%s", "customer.txt\n");
for (spec_index = 0; spec_index <= customer_row; spec_index++)
{
for (key_index = 0; key_index <= customer_col; key_index++)
{
fprintf(tfp, "%s ", customer_str[spec_index][key_index]);
}
fprintf(tfp, "%s", "\n");
}
fclose(tfp);
return FAILURE;
}
for (spec_index = 0; spec_index <= customer_row; spec_index++)
{
for (key_index = 0; key_index <= customer_col; key_index++)
{
fprintf(fp, "%s ", customer_str[spec_index][key_index]);
}
fprintf(fp, "%s", "\n");
}
fclose(fp);
// Free the memory for inventory
customer_memory_deallocation();
return SUCCESS;
}
///-------------------------------------------File management---------------------------------------------------------------
///-------------------------------------------Start of algo---------------------------------------------------------------
//Function: dsuroot
//Description: returns the parent of a given node
//Input param: int
//Return Type: int
int dsuroot(int a)
{
while(arr[a]!=a)
{
arr[a]=arr[arr[a]];
a=arr[a];
}
return a;
}
//Function: dsufind
//Description: finds if the two nodes have the same parent or not
//Input param: int , int
//Return Type: int
int dsufind(int a,int b)
{
if(dsuroot(a)==dsuroot(b))
{
return 1;
}
return 0;
}
//Function: dsuinitialize
//Description: initializes the dsu array and dsu size array
//Input param: NULL
//Return Type: NULL
void dsuinitialize()
{
int i=0;
for(i=0;i<SIZE;i++)
{
arr[i]=i;
dsusize[i]=1;
}
}
//Function: dsuunion
//Description: performs union operation between the given nodes
//Input param: int , int
//Return Type: NULL
void dsuunion(int a,int b)
{
int root_a=dsuroot(a);
int root_b=dsuroot(b);
if(dsusize[root_a]>dsusize[root_b])
{
arr[root_b]=arr[root_a];
dsusize[root_a]+=dsusize[root_b];
}
else
{
arr[root_a]=arr[root_b];
dsusize[root_b]+=dsusize[root_a];
}
}
//Function: KMPsearch
//Description: Performs kmp string search algorithm and returns if string pat is present in string txt
//Input param: char* , char*
//Return Type: int
int KMPSearch(char *pat, char *txt)
{
int M = strlen(pat);
int N = strlen(txt);
int *lps = (int *) malloc(sizeof(int) * M);
int j = 0;
computeLPSArray(pat, M, lps);
int i = 0;
while (i < N)
{
if (pat[j] == txt[i])
{
j++;
i++;
}
if (j == M)
{
return 1;
}
else if (i < N && pat[j] != txt[i])
{
if (j != 0)
{
j = lps[j - 1];
}
else
{
i = i + 1;
}
}
}
free(lps);
return 0;
}
//Function: computeLPSArray
//Description: computes the lps array required to perform kmp search
//Input param: char* , int , int*
//Return Type: NULL
void computeLPSArray(char *pat, int M, int *lps)
{
int len = 0;
int i;
lps[0] = 0;
i = 1;
while (i < M)
{
if (pat[i] == pat[len])
{
len++;
lps[i] = len;
i++;
}
else
{
if (len != 0)
{
len = lps[len - 1];
}
else
{
lps[i] = 0;
i++;
}
}
}
}
///-------------------------------------------End of algo---------------------------------------------------------------
///---------------------------------------------Start of employee-------------------------------------------------------
//Function: new_employee
//Description: creates a new employee node and fills its data and returns the node created
//Input param: char* , char*
//Return Type: struct employee*
struct employee* new_employee(char* ename,char* id)
{
struct employee* temp=(struct employee*)malloc(sizeof(struct employee));
strcpy(temp->name,ename);
strcpy(temp->employee_id,id);
temp->next=NULL;
return temp;
}
//Function: load_to_struct_employee
//Description: inserts all the values of employees from the employee string to a linked list
//Input param: struct* employee , char[][][] , int
// Return Type: struct employee*
struct employee* load_to_struct_employee(struct employee* employee_root_fun,char employee_database[][2][40],int employee_number)
{
for(int i=0; i<employee_number; i++)
{
char employee_name_fun[40];
char id[40];
strcpy(employee_name_fun,employee_database[i][0]);
strcpy(id,employee_database[i][1]);
employee_root_fun=employee_insert(employee_root_fun,employee_name_fun,id);
// printf("1\n");
}
return employee_root_fun;
}
//Function: employee_insert
//Description: adds the value to the front of the linked list
//Input param: struct employee* , char* , char*
//Return Type: struct employee*
struct employee* employee_insert(struct employee* node, char* name, char* id)
{
struct employee* temp=new_employee(name,id);
temp->next=node;
return temp;
}
//Function: search_employee
//Description: displays the details of the employee by searching using employee id and performing KMP search on it
//Input param: NULL
//Return Type: NULL
void search_employee()
{
char s[10]; /// First 2 shop_id and last 4 employee id
printf("\n");
printf("Enter the employee id : ");
char x;
scanf("%s",s);
struct employee* node=employee_root;
while(node!=NULL)
{
if(KMPSearch(s,node->employee_id))
{
printf("\n");
printf("Employee name : %s",node->name);
printf("\n");
printf("Employee id : %s",node->employee_id);
printf("\n");
printf("Shop id : %c%c",node->employee_id[0],node->employee_id[1]);
printf("\n");
printf("Verification done sucessfully\n");
return;
}
node=node->next;
}
printf("\n");
printf("Employee not found");
printf("\n");
}
///---------------------------------------------End of employee-------------------------------------------------------
///--------------------Start of Customer------------------------------------------------------------------
//Function: new_customer
//Description: creates and returns a node of type struct customer* to insert in the AVL tree
//Input param: char* , ling long int , char* , char* , float
//Return Type: struct customer*
struct customer* new_customer(char* name,long long int id_trans, char* date, char* id_shop,float amount)
{
struct customer* temp=malloc(sizeof(struct customer));
strcpy(temp->customer_name,name);
temp->trans_id = id_trans;
strcpy(temp->date,date);
strcpy(temp->shop_id,id_shop);
temp->amount=amount;
temp->height=1;
temp->lchild=temp->rchild=NULL;
return temp;
}
//Function: height
//Description: returns the height of a specific node
//Input param: struct customer*
//Return Type: int
int height(struct customer* c)
{
if(c==NULL)
{
return 0;
}
else
{
return c->height;
}
}
//Function: max
//Description: find the maximum between two functions
//Input param: int , int
//Return Type: int
int max(int a, int b)
{
return (a>b)? a : b;
}
//Function: lr
//Description: It performs lr rotation on the AVL tree
//Input param: struct customer*
//Return Type: struct customer*
struct customer* lr(struct customer* c)
{
struct customer *y = c->rchild;
struct customer *temp = y->lchild;
y->lchild = c;
c->rchild = temp;
c->height = max(height(c->lchild), height(c->rchild))+1;
y->height = max(height(y->lchild), height(y->rchild))+1;
return y;
}
//Function: rr
//Description: it performs rr rotation on the AVL tree
//Input param: struct* customer
//Return Type: struct* customer
struct customer* rr(struct customer* c)
{
struct customer *x = c->lchild;
struct customer *temp = x->rchild;
x->rchild = c;
c->lchild = temp;
c->height = max(height(c->lchild), height(c->rchild))+1;
x->height = max(height(x->lchild), height(x->rchild))+1;
return x;
}
//Function: get_balance
//Description: it computes the balance factor of a given nodo
//Input param: struct customer*
//Return Type: int
int get_balance(struct customer* c)
{
if(c==NULL)
{
return 0;
}
return height(c->lchild)-height(c->rchild);
}
//Function: customer_insert
//Description: it inserts a new node in the AVL tree
//Input param: struct customer* , char* , long long int , char* , char* , float
//Return Type: struct customer*
struct customer* customer_insert(struct customer* node, char* name,long long int id_trans, char* date, char* id_shop,float amount)
{
if (node == NULL)
{
return (new_customer(name, id_trans, date, id_shop, amount));
}
if (id_trans < node->trans_id)
{
node->lchild = customer_insert(node->lchild, name, id_trans, date, id_shop, amount);
}
else if (id_trans > node->trans_id)
{
node->rchild = customer_insert(node->rchild, name, id_trans, date, id_shop, amount);
}
else
{
return node;
}
node->height = 1 + max(height(node->lchild),height(node->rchild));
int balance = get_balance(node);
if (balance > 1 && id_trans < node->lchild->trans_id)
{
return rr(node);
}
if (balance < -1 && id_trans > node->rchild->trans_id)
{
return lr(node);
}
if (balance > 1 && id_trans > node->lchild->trans_id)
{
node->lchild = lr(node->lchild);
return rr(node);
}
if (balance < -1 && id_trans < node->rchild->trans_id)
{
node->rchild = rr(node->rchild);
return lr(node);
}
return node;
}
//Function: string_to_ll
//Description: it converts the given string to long long int and returns it
//Input param: char*
//Return Type: long long int
long long int string_to_ll(char* string)
{
int size=strlen(string);
long long int t=1,ans=0;
for(long long int i=size-1;i>=0;i--)
{
ans+=t*(string[i]-'0');
t*=10;
}
return ans;
}
//Function: string_to_float
//Description: it converts a given string to float and returns it
//Input param: char*
//Return Type: float
float string_to_float(char* string)
{
char* pend;
float f=strtof(string,&pend); //inbuilt c11 function to convert string representation of float to float
return f;
}