forked from sandeshghanta/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueueasstack.cpp
More file actions
80 lines (79 loc) · 1.46 KB
/
queueasstack.cpp
File metadata and controls
80 lines (79 loc) · 1.46 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
#include<bits/stdc++.h>
using namespace std;
void inser(queue<int>& data)
{
int el;
cout << "Enter element to be inserted" << endl;
cin >> el;
data.push(el);
return;
}
void remov(queue<int>& data)
{
queue<int>temp;
if (data.size() == 0)
{
cout << "Queue is Empty" << endl;
return;
}
int siz = data.size();
for (int i = 0;i<siz-1;i++)
{
temp.push(data.front());
data.pop();
}
data.pop();
siz = temp.size();
for (int i=0;i<siz;i++)
{
data.push(temp.front());
temp.pop();
}
return;
}
void display(queue<int>& data)
{
cout << "Queue is ";
queue<int>temp;
int siz = data.size();
for (int i=0;i<siz;i++)
{
temp.push(data.front());
data.pop();
}
siz = temp.size();
for (int i=0;i<siz;i++)
{
data.push(temp.front());
cout << temp.front() << " ";
temp.pop();
}
cout << endl;
return;
}
int main()
{
int check=1,choice;
queue<int>data;
while (check == 1)
{
cout << "Press 1 to insert element" << endl;
cout << "Press 2 to remove element" << endl;
cout << "Press 3 to exit" << endl;
cin >> choice;
if (choice == 1)
{
inser(data);
}
if (choice == 2)
{
remov(data);
}
if (choice == 3)
{
break;
}
display(data);
}
return 0;
}