-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimplement.cpp
More file actions
584 lines (429 loc) · 15.3 KB
/
Copy pathimplement.cpp
File metadata and controls
584 lines (429 loc) · 15.3 KB
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
#include "header.h"
#include "avl.h"
#include<fstream>
PizzaShop* myPizzaShop=NULL;
double total, takeAway, dineIn, homeDelivery;
int orderIDCounter = 1;
//For home delivery
HomeDeliveryNode* home = NULL;
//For dine in orders
Node* dineInQueue=NULL; //front in our queue
Node* currentOrder=NULL; //rear in our queue
//For take away orders
Node* head = NULL;
int size = 0;
customer insertData(PizzaShop* myPizzaShop){
customer c;
cin.ignore();
cout << "Enter the name of the customer: ";
getline(cin, c.name);
cout << endl;
cout << "Enter age of the customer: ";
cin >> c.age;
cout << endl;
cout << "Enter option for Pizza: ";
cin >> c.pizzaIndex;
// assign pizza name based on index
if (c.pizzaIndex >= 1 && c.pizzaIndex <= 10) {
c.pizzaName = myPizzaShop->menu[c.pizzaIndex];
} else {
cout << "Invalid index. Setting pizza name to 'unknown'.\n";
c.pizzaName = "unknown";
}
cout << "Enter quantity: ";
cin >> c.quantity;
c.bill = c.quantity * myPizzaShop->price[c.pizzaIndex];
return c;
}
//-----------------------------------------------------------Place Orders------------------------------------------------------------------
void placeTakeAwayOrder(customer c) {
c.orderID = orderIDCounter++;
Node* newNode = new Node;
newNode->c = c;
newNode->next = NULL;
if (head == NULL) {
head = newNode;
size++;
cout << "Your Order has been Placed MR/MRS " << c.name
<< " | Order ID: " << c.orderID
<< " | Pizza: " << c.pizzaName
<< " | Quantity: " << c.quantity
<< " | Total Bill: " << c.bill << " RS/_"
<< endl;
string customerType="Take-Away ";
writeOrderToFile(c, "order.txt",customerType );
return;
}
// Append at end
Node* temp = head;
while (temp->next != NULL)
temp = temp->next;
temp->next = newNode;
// Heapify up (swap by customer if age condition not met)
int childIndex = size;
int parentIndex = (childIndex - 1) / 2;
while (childIndex > 0) {
Node* child = head;
for (int i = 0; i < childIndex; ++i)
child = child->next;
Node* parent = head;
for (int i = 0; i < parentIndex; ++i)
parent = parent->next;
if (child->c.age <= parent->c.age)
break;
// Swap customer objects (not nodes)
customer tempC = parent->c;
parent->c = child->c;
child->c = tempC;
childIndex = parentIndex;
parentIndex = (childIndex - 1) / 2;
}
size++;
// Final print after insertion
cout << "Your Order has been Placed MR/MRS " << c.name
<< " | Order ID: " << c.orderID
<< " | Pizza: " << c.pizzaName
<< " | Quantity: " << c.quantity
<< " | Total Bill: " << c.bill << " RS/_"
<< endl;
string customerType = "Take-Away ";
writeOrderToFile(c, "order.txt", customerType);
}
void placeDineInOrder(customer c) {
c.orderID = orderIDCounter++;
Node* newOrder = new Node;
newOrder->c = c;
newOrder->next = NULL;
if (dineInQueue == NULL) {
dineInQueue = newOrder;
}
else {
Node* currentOrder = dineInQueue;
while (currentOrder->next != NULL) {
currentOrder = currentOrder->next;
}
currentOrder->next = newOrder;
}
cout << "Your Order has been Placed MR/MRS " << c.name
<< " | Order ID: " << c.orderID
<< " | Pizza: " << c.pizzaName
<< " | Quantity: " << c.quantity
<< " | Total Bill: " << c.bill << " RS/_"
<< endl;
string customerType = "Dine-In ";
writeOrderToFile(c, "order.txt", customerType);
}
void placeHomeOrders(customer c, string address, int deliveryCharges, int distanceDelivery) {
c.orderID = orderIDCounter++;
HomeDeliveryNode* tmp = new HomeDeliveryNode();
tmp->c = c;
tmp->address = address;
tmp->deliveryCharges = deliveryCharges;
tmp->distanceFromShop = distanceDelivery;
tmp->next = home;
home = tmp;
cout << "Your Order has been Placed MR/MRS " << c.name
<< " | Order ID: " << c.orderID
<< " | Pizza: " << c.pizzaName
<< " | Quantity: " << c.quantity
<< " | Total Bill: " << c.bill << " RS/_"
<< endl;
cout << "Delivery Charges: " << deliveryCharges << " RS/_"
<< " | Distance: " << distanceDelivery << " KM"
<< " | Address: " << address << endl;
string customerType = "Home-Delivery Customer";
writeOrderToFile(c, "order.txt", customerType);
}
//---------------------------------------------------------Serve Orders--------------------------------------------------------------------
void serveTakeAway() {
if (head == NULL) {
cout << "No customer to serve.\n";
return;
}
// If only one element
if (size == 1) {
cout << "Take away customer served: " << head->c.name
<< " | Age: " << head->c.age
<< " | Pizza: " << head->c.pizzaName
<< " | Quantity: " << head->c.quantity
<< " | Bill: " << head->c.bill << endl;
// storing in avl
string customerType = "Take-Away";
bool ht_inc = false;
root=insertAVL(head->c,customerType,root,&ht_inc);
writeOrderToFile(head->c, "served.txt", customerType);
delete head;
head = NULL;
size--;
return;
}
// Find last node and its previous node
Node* last = head;
Node* beforeLast = NULL;
for (int i = 0; i < size - 1; i++) {
beforeLast = last;
last = last->next;
}
// Store root (highest priority) for output
customer served = head->c;
// Replace root with last node's customer
head->c = last->c;
// Delete last node
if (beforeLast != NULL)
beforeLast->next = NULL;
else
head = NULL;
delete last;
size--;
// Bubble down to maintain heap
int parentIndex = 0;
int left = 2 * parentIndex + 1;
int right = 2 * parentIndex + 2;
while (right < size) {
Node* parent = head;
for (int i = 0; i < parentIndex; i++) parent = parent->next;
Node* leftNode = head;
for (int i = 0; i < left; i++) leftNode = leftNode->next;
Node* rightNode = head;
for (int i = 0; i < right; i++) rightNode = rightNode->next;
if (parent->c.age >= leftNode->c.age && parent->c.age >= rightNode->c.age)
break;
if (leftNode->c.age >= rightNode->c.age) {
customer temp = parent->c;
parent->c = leftNode->c;
leftNode->c = temp;
parentIndex = left;
} else {
customer temp = parent->c;
parent->c = rightNode->c;
rightNode->c = temp;
parentIndex = right;
}
left = 2 * parentIndex + 1;
right = 2 * parentIndex + 2;
}
if (left == size - 1) {
Node* parent = head;
for (int i = 0; i < parentIndex; i++) parent = parent->next;
Node* leftNode = head;
for (int i = 0; i < left; i++) leftNode = leftNode->next;
if (parent->c.age < leftNode->c.age) {
customer temp = parent->c;
parent->c = leftNode->c;
leftNode->c = temp;
}
}
cout << "Take away customer served: " << served.name
<< " | Age: " << served.age
<< " | Order ID : " << served.orderID
<< " | Pizza: " << served.pizzaName
<< " | Quantity: " << served.quantity
<< " | Bill: " << served.bill << endl;
// storing to AVL and file
string customerType = "Take-Away";
bool ht_inc = false;
root=insertAVL(served,customerType,root,&ht_inc);
writeOrderToFile(served, "served.txt", customerType);
}
void serveDineInOrder() {
if (dineInQueue == NULL) {
cout << "No dine-in customers to serve!" << endl;
return;
}
Node* servedNode = dineInQueue;
customer served = servedNode->c;
dineInQueue = dineInQueue->next;
if (dineInQueue == NULL) {
currentOrder = NULL;
}
cout << "Dine-in customer served: " << served.name
<< " | Age: " << served.age
<< " | Order ID : " << served.orderID
<< " | Pizza: " << served.pizzaName
<< " | Quantity: " << served.quantity
<< " | Bill: " << served.bill << endl;
// storing in AVL and file
string customerType = "Dine-In";
bool ht_inc = false;
root=insertAVL(served,customerType,root,&ht_inc);
writeOrderToFile(served, "served.txt", customerType);
delete servedNode;
}
void serveHomeOrder() {
if (home == NULL) {
cout << "No Home Delivery Customer to Serve!" << endl;
return;
}
HomeDeliveryNode* tmp = home;
customer served = tmp->c;
home = home->next;
cout << "Home Delivery Customer served: " << served.name
<< " | Age: " << served.age
<< " | Order ID : " << served.orderID
<< " | Pizza: " << served.pizzaName
<< " | Quantity: " << served.quantity
<< " | Bill: " << served.bill << endl;
// storing in AVL and file
string customerType = "Home-Delivery Customer";
bool ht_inc = false;
root=insertAVL(served,customerType,root,&ht_inc);
writeOrderToFile(served, "served.txt", customerType);
delete tmp;
}
void serveAllOrders() {
//Takeaway
while (size > 0) {
serveTakeAway();
}
//Dine-In
while (dineInQueue != NULL) {
serveDineInOrder();
}
//Home Delivery
while (home != NULL) {
serveHomeOrder();
}
}
//-----------------------------------------------------------Display Orders----------------------------------------------------------------
void displayTakeAwayOrders() {
if (head == NULL) {
cout << "There is no Order for Walking Customer till yet" << endl;
return;
}
Node* temp = head;
int count = 1;
while (temp != NULL) {
cout << "-----------------------------------------------------" << endl;
cout << "Take-Away Customer " << count++ << " : " << temp->c.name << endl;
cout << "Age : " << temp->c.age << endl;
cout << "Order ID : " << temp->c.orderID << endl;
cout << "Pizza Name : " << temp->c.pizzaName << endl;
cout << "Quantity : " << temp->c.quantity << endl;
cout << "Bill : " << temp->c.bill << " RS/_" << endl;
cout << "-----------------------------------------------------" << endl;
temp = temp->next;
}
}
void displayDineInOrders() {
int count = 1;
if (dineInQueue == NULL) {
cout << "There is no Order for Dine-In Customer till yet" << endl;
}
else {
Node* traversal = dineInQueue;
while (traversal != NULL) {
cout << "-----------------------------------------------------" << endl;
cout << "Dine-In Customer " << count++ << " : " << traversal->c.name << endl;
cout << "Age : " << traversal->c.age << endl;
cout << "Order ID : " << traversal->c.orderID << endl;
cout << "Pizza Name : " << traversal->c.pizzaName << endl;
cout << "Quantity : " << traversal->c.quantity << endl;
cout << "Bill : " << traversal->c.bill << " RS/_" << endl;
cout << "-----------------------------------------------------" << endl;
traversal = traversal->next;
}
}
}
void displayHomeOrders() {
if (home == NULL) {
cout << "There is no Order for Home Delivery Customer till yet" << endl;
return;
}
HomeDeliveryNode* traversal = home;
int count=1;
while (traversal != NULL) {
cout << "-----------------------------------------------------" << endl;
cout << "Home Delivery Customer "<< count++ << " : " << traversal->c.name << endl;
cout << "Age : " << traversal->c.age << endl;
cout << "Order ID : " << traversal->c.orderID << endl;
cout << "Pizza Name : " << traversal->c.pizzaName << endl;
cout << "Quantity : " << traversal->c.quantity << endl;
cout << "Delivery Distance : " << traversal->distanceFromShop << "KM" << endl;
cout << "Delivery Charges : " << traversal->deliveryCharges << endl;
cout << "Bill : " << traversal->c.bill << " RS/_" << endl;
cout << "Delivery Address : " << traversal->address << endl;
cout << "-----------------------------------------------------" << endl;
traversal = traversal->next;
}
}
void displayAllOrders() {
cout << "The Take-Away Customers Are :" << endl;
displayTakeAwayOrders();
cout << "The Dine-IN Customers Are :" << endl;
displayDineInOrders();
cout << "The Home Delivery Customers Are :" << endl;
displayHomeOrders();
}
//----------------------------------------------------Pending Orders Bill-------------------------------------------------------------------
void totalbillofPendingOrders() {
takeAway = 0;
dineIn = 0;
homeDelivery = 0;
total=0;
// Take-Away (Linked List Max Heap)
Node* p = head;
while (p != NULL) {
takeAway += p->c.bill;
p = p->next;
}
// Dine-In (Queue)
Node* q = dineInQueue;
while (q != NULL) {
dineIn += q->c.bill;
q = q->next;
}
// Home Delivery (Stack)
HomeDeliveryNode* r = home;
while (r != NULL) {
homeDelivery += r->c.bill;
r = r->next;
}
// Total
total = takeAway + dineIn + homeDelivery;
cout << "The total bill of pending orders for Take-Away customers are : " << takeAway << " RS/_" << endl;
cout << "The total bill of pending orders for Dine-In customers are : " << dineIn << " RS/_" << endl;
cout << "The total bill of pending orders for Delivery customers are : " << homeDelivery << " RS/_" << endl;
cout << "The Total orders pending are : " << total << " RS/_" << endl;
}
//-------------------------------------------------File Handling-----------------------------------------------------------------------
void writeOrderToFile(const customer& c, const string& fileName, const string& customerType) {
ofstream file(fileName.c_str(), ios::app); // append mode - using .c_str() for older compilers
if (file.is_open()) {
file << "Order ID: " << c.orderID << "\n";
file << "Name: " << c.name << "\n";
file << "Age: " << c.age << "\n";
file << "Pizza: " << c.pizzaName << "\n";
file << "Quantity: " << c.quantity << "\n";
file << "Bill: " << c.bill << "\n";
file << "Customer Type: " << customerType << "\n";
file << "------------------------\n";
file.close();
} else {
cout << "Unable to open file: " << fileName << endl;
}
}
void readFromFile(const string& fileName) {
ifstream file(fileName.c_str()); // using .c_str() for older compilers
if (file.is_open()) {
string line;
bool empty = true;
while (getline(file, line)) {
cout << line << endl;
empty = false;
}
if (empty)
cout << "No data found in " << fileName << endl;
file.close();
} else {
cout << "Unable to open file: " << fileName << endl;
}
}
void clearFile(const string& fileName) {
ofstream file(fileName.c_str(), ios::trunc); // using .c_str() for older compilers
if (file.is_open()) {
file.close();
cout << fileName << " has been cleared successfully.\n";
} else {
cout << "Unable to open file: " << fileName << endl;
}
}