-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSTACKCL.CPP
90 lines (81 loc) · 1.33 KB
/
STACKCL.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
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<math.h>
#include<iomanip.h>
#include<string.h>
#include<math.h>
#include<dos.h>
#include<fstream.h>
#include<string.h>
#include<stdlib.h>
class stack
{
int list[10];
int top;
public:
stack()
{
top=-1;
}
void push(int);
void pop();
int is_empty();
void display();
};
void stack::push(int n)
{
if(top==9)
cout<<"buffer overflow exiting ";
else
list[++top]=n;
}
void stack::pop()
{
cout<<"deleted element is ="<<list[top--];
}
int stack::is_empty()
{
if(top==-1)
return(1);
else
return(0);
}
void stack::display()
{
int i;
for(i=top;i>=0;i--)
cout<<list[i]<<endl;
}
void main()
{
system("cls");
int num, opt;
stack obj;
do
{
cout<<"\t\t\toperations on stack \n\n\3 1.\tpush\n\4 2.\tpop\n\5 3.\tdisplay\n\6 4.\texit\n\n\nenter option\n";
cin>>opt;
switch(opt)
{
case 1: cout<<"enter value to be added \n";
cin>>num;
obj.push(num);
break;
case 2: if(obj.is_empty())
cout<<"buffer underflow\n";
else
obj.pop();
getch();
break;
case 3: obj.display();
getch();
clrscr;
case 4:cout<<"press any key to exit";
break;
default: cout<<"wrong choice press any key to return to main menu";
}
}while(opt!=4);
getch();
exit(0);
}