-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlabset02.cpp
96 lines (93 loc) · 1.65 KB
/
labset02.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
94
95
96
#include <iostream>
#include <cstdlib>
using namespace std;
const int size=4;
class Queue
{
int f,r;
int s[size];
public:
Queue();
void Insert_rear(int);
void Delete_front();
void dispaly();
};
Queue::Queue()
{
f=-1;
r=-1;
}
void Queue::Insert_rear(int x)
{
if(r==size)
{
cout<<"\nQueue Overflow\n";
return;
}
s[++r]=x;
if(f==-1)
f=0;
cout<<x<<" is inserted\n";
}
void Queue::Delete_front()
{
int temp;
if(f==-1)
{
cout<<"\nQueue Underflow\n";
return;
}
temp=s[f];
if(f==r)
f=r=-1;
else
f++;
cout<<temp<<" is deleted\n";
}
void Queue::dispaly()
{
int i;
if(f==-1)
{
cout<<"\nEmpty Queue\n";
return;
}
cout<<"\nThe Queue contents are: ";
for(i=f;i<=r;i++)
cout<<s[i]<<"\t";
cout<<endl;
}
int main()
{
Queue qu;
int count,ch,i;
count=0;
while(1)
{
cout<<"\n1.Insert\n2.Delete\n3.Display\n4.Exit\n";
cout<<"\nEnter your choice\n";
cin>>ch;
if(ch==1)
{
if(count==size)
cout<<"\nQueue Overflow\n";
else
{
cout<<"\nEnter the data to be inserted\n";
cin>>i;
qu.Insert_rear(i);
count++;
}
}
else if(ch==2)
{
qu.Delete_front();
count--;
}
else if(ch==3)
qu.dispaly();
else
exit(0);
}
return 0;
}