-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13]fds_program_for_queue_pizza.cpp
93 lines (87 loc) · 1.68 KB
/
13]fds_program_for_queue_pizza.cpp
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
#include <iostream>
using namespace std;
class pizza_parlor
{
public:
int count;
int q[50], x, MAX;
int rear;
int front;
pizza_parlor()
{
count = 0;
front = 0;
rear = -1;
cout << "\n Maximum order accepted:";
cin >> MAX;
}
void insert();
void deleteQueue();
void display();
} Parlor;
void pizza_parlor::insert()
{
if (count == MAX)
{
cout << "\n Orders are full.";
}
else
{
cout << "\n Enter order id:";
cin >> x;
rear = (rear + 1) % MAX;
q[rear] = x;
count++;
cout << "\n Order is placed.";
}
}
void pizza_parlor::display()
{
int i;
cout << "\n Orders are:\n";
i = front;
do
{
cout << q[i]<<"\t";
i = (i + 1) % MAX;
} while (i != ((rear + 1) % MAX));
}
void pizza_parlor::deleteQueue()
{
if (count == 0)
{
cout << "\n No order is placed.";
}
else
{
front = (front + 1) % MAX;
count--;
cout << "\n Order is delivered.";
}
}
int main()
{
int choice;
do
{
cout << "\n Menu:";
cout << "\n 1)Place order";
cout << "\n 2)Pending orders";
cout << "\n 3)Deliver order";
cout << "\n 4)Exit";
cout << "\n Enter your choice: ";
cin >> choice;
switch (choice)
{
case 1:
Parlor.insert();
break;
case 2:
Parlor.display();
break;
case 3:
Parlor.deleteQueue();
break;
}
} while (choice < 4);
}