-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathQueue.cpp
More file actions
92 lines (82 loc) · 1.62 KB
/
Queue.cpp
File metadata and controls
92 lines (82 loc) · 1.62 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
#include <bits/stdc++.h>
using namespace std;
int q[100];
int front=-1;
int rear=-1;
void insert(int n)
{
if(front==-1 && rear==-1)
{
front=0;
rear=0;
q[rear]=n;
}
else if((rear+1)%100==front)
{
cout<<"queue overflow";
}
else
{
rear=(rear+1)%100;
q[rear]=n;
}
}
int del()
{
if((front==-1) && (rear==-1))
{
cout<<"\nQueue underflow";
}
else if(front==rear)
{
cout<<"\nthe element deleted is "<<q[front]<<"\n";
front=-1;
rear=-1;
}
else
{
cout<<"\nthe element deleted is "<<q[front]<<"\n";
front=(front+1)%100;
}
}
void display()
{
int i=front;
if(front==-1 && rear==-1)
{
cout<<"\nqueue is empty";
}
else
{
while(i<=rear)
{
cout<<q[i]<<" ";
i=(i+1)%100;
}
}
printf("\n");
}
int main()
{
int ch=1,n;
while(ch!=0)
{
cout<<"\n1: Insert | 2: Delete | 3: Display\n ";
cin>>ch;
switch(ch)
{
case 1: cout<<"\nEnter the element which is to be inserted:-";
cin>>n;
insert(n);
break;
case 2: del();
break;
case 3: display();
break;
default: cout<<"\nEnter the correct choice";
ch =1;
break;
}
}
return 0;
}