-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstack_with_ll.cpp
121 lines (104 loc) · 2.01 KB
/
stack_with_ll.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include<iostream>
using namespace std;
#define MAX 5
class node{
public:
int data;
node* next;
};
class stack{
private:
node* head;
int count;
public:
stack(){
head = NULL;
count = 0;
}
void push(int value);
void pop();
void display();
void peek();
};
void stack::push(int value){
if(count<MAX){
node* new_node = new node;
new_node->data = value;
new_node->next = head;
head = new_node;
count++;
}
else{
cout<<"Stack overflow";
return;
}
}
void stack::pop(){
if(count <= 0){
cout<<"Stack underflow";
return;
}
node* temp = head;
head = head->next;
delete temp;
count--;
return;
}
void stack::display(){
if(head == NULL){
cout<<"Empty list";
return;
}
node* temp = head;
while(temp != NULL){
cout<<temp->data<<" ";
temp = temp->next;
}
return;
}
void stack::peek(){
if(head == NULL){
cout<<"Empty stack";
return;
}
cout<<"Top element:"<<head->data;
return;
}
int main(){
stack s;
int value,choice;
cout<<"Menu\n";
cout<<"1.)Push\n";
cout<<"2.)Pop\n";
cout<<"3.)Display\n";
cout<<"4.)Peek\n";
cout<<"0.)Exit\n";
do{
cout<<"\nEnter your choice:";
cin>>choice;
switch(choice){
case 1:
cout<<"Enter value:";
cin>>value;
s.push(value);
break;
case 2:
s.pop();
break;
case 3:
s.display();
break;
case 4:
s.peek();
break;
case 0:
cout<<"Exiting program....";
break;
default:
cout<<"Please enter correct option";
break;
}
}
while(choice != 0);
return 0;
}