-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstackasqueue.cpp
79 lines (79 loc) · 1.45 KB
/
stackasqueue.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
#include<bits/stdc++.h>
using namespace std;
void inser(stack<int>& data)
{
int el;
cout << "Enter element to be inserted" << endl;
cin >> el;
data.push(el);
return;
}
void remov(stack<int>& data)
{
if (data.size() == 0)
{
cout << "Stack is empty" << endl;
return;
}
stack<int>temp;
int siz = data.size();
for (int i=0;i<siz;i++)
{
temp.push(data.top());
data.pop();
}
temp.pop();
siz = temp.size();
for (int i=0;i<siz;i++)
{
data.push(temp.top());
temp.pop();
}
return;
}
void display(stack<int>& data)
{
stack<int>temp;
cout << "Now Queue is ";
int siz = data.size();
for (int i = 0;i<siz;i++)
{
temp.push(data.top());
data.pop();
}
siz = temp.size();
for (int i=0;i<siz;i++)
{
data.push(temp.top());
cout << temp.top() << " ";
temp.pop();
}
cout << endl;
return;
}
int main ()
{
stack<int>data;
int check = 1,choice;
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;
}