-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStackMaxElement.cpp
76 lines (68 loc) · 965 Bytes
/
StackMaxElement.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
#include<iostream>
#define MAX 4
//Stack works with LIFO principle
int top=-1;
int a[MAX];
bool push(int x){
if (top==MAX-1){
std::cout<<"overflow"<<std::endl;
return false;
}
else{
top=top+1;
a[top]=x;
return true;
}
}
int pop(){
if(top==-1){
std::cout<<"underflow";
}
else{
int x=a[top];
top=top-1;
return 0;
}
}
void maxelem(){
int max=a[0];
for(int i=0; i<=top;i++){
if(a[i]>max){
max=a[i];
}
}
std::cout<<max;
}
void print(){
int i;
std::cout<<"elements are ";
for(i=0; i<=top;i++){
std::cout<<a[i]<<" ";
}
}
int main(){
int n;
std::cin>>n;
int a,d;
for(int i=0; i<n;i++){
std::cin>>a;
switch(a){
case 1:
std::cin>>d;
push(d);
break;
case 2:
pop();
break;
case 3:
maxelem();
break;
case 4:
print();
break;
default:
std::cout<<"incorrect";
}
}
return 0;
}