-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQueue_Using_Array.cpp
76 lines (71 loc) · 1.55 KB
/
Queue_Using_Array.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
// Queue Using Array.
#include<iostream>
using namespace std;
int queue[100], n=100, front=-1, rear=-1;
void Insert()
{
int val;
if(rear == n-1)
cout<< "Queue Overflow"<<endl;
else
{
if(front==-1)
front = 0;
cout<< "Insert the Element in Queue: ";
cin>> val;
rear++;
queue[rear] = val;
}
}
void Delete()
{
if(front==-1 || front > rear)
{
cout<< "Queue Underflow"<<endl;
return;
}
else
{
cout<< "Element Deleted from Queue is: " << queue[front] <<endl;
front++;
}
}
void Display()
{
if(front==-1)
cout<< "Queue is Empty"<<endl;
else
{
cout<< "Queue Elements Are: ";
for(int i=front; i<=rear;i++)
cout<< queue[i] << " ";
cout<<endl;
}
}
int main()
{
int choice;
cout<< "1) Insert Element to Queue"<<endl;
cout<< "2) Delete Element from Queue"<<endl;
cout<< "3) Display all the Element of Queue"<<endl;
cout<< "4) Exit\n"<<endl;
do
{
cout<< "Enter Your Choice: ";
cin>> choice;
switch (choice)
{
case 1: Insert();
break;
case 2: Delete();
break;
case 3: Display();
break;
case 4: cout<< "Exit"<<endl;
break;
default: cout<< "Invalid Choice"<<endl;
}
}
while(choice!=4);
return 0;
}