-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.cpp
More file actions
83 lines (61 loc) · 877 Bytes
/
Copy pathstack.cpp
File metadata and controls
83 lines (61 loc) · 877 Bytes
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
#include<iostream>
using namespace std;
class stack{
private:
int top,max;
int array[100];
int i,num,value;
public:
stack(){
top=-1;
max=50;
}
void push(){
cout<<"Enter the number you want to push";
cin>>num;
if(top>=(max-1)){
cout<<"Overflow";
}
else {top++;
array[top]=num;
}
}
void pop(){
if(top==-1){
cout<<"\n Underflow";
}
else{
value=array[top];
top--;
}
}
void display(){
cout<<"\n The elements are: ";
for(i=0;i<=top;i++){
cout<<"\n";
cout<<array[i];
}
}
};
int main(){
stack s;
int x,y,cont=1;
while(cont==1)
{
cout<<"\n The choices are "<<endl<< "1 - Push "<<endl<<"2 - Pop"<<endl<<"3 - Display";
cin>>x;
switch(x)
{
case 1: s.push();
break;
case 2: s.pop();
break;
case 3: s.display();
break;
default:
break;
}
cout<<"\n Enter 1 to continue";
cin>>cont;
}
}