-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimpleStack.cpp
127 lines (103 loc) · 1.97 KB
/
simpleStack.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
122
123
124
125
126
127
//implementing stack using arrary in class of c++
#include<iostream>
using namespace std;
class stack
{
private:
struct block
{
int top;
int capacity;
int *arr;
};
block *s;
public:
//constructor for the stack
stack(int size)
{
s=new block;
s->top=-1;
s->capacity=size;
s->arr= new int[size];
}
int isFull()
{
if(s->top==s->capacity-1)
return 1;
return 0;
}
int isEmpty()
{
if(s->top==-1)
return 1;
return 0;
}
void push(int data)
{
if(!isFull())
{
s->top ++;
s->arr[s->top]=data;
}
else
{
cout<<"\nStack is Full\n";
}
}
int pop()
{
int t;
if(!isEmpty())
{
t=s->arr[s->top];
return t;
}
else
{
cout<<"\nStack is empty\n";
}
}
int topElem()
{
return s->arr[s->top];
}
void display()
{
int i=0;
for(i=0;i<=s->top;i++)
{
cout<<" "<<s->arr[i];
}
}
void remove()
{
if(s)
{
if(s->arr)
delete [] s->arr;
delete s;
}
}
~stack()
{
cout<<"\nDestructing the object\n";
}
};
int main()
{
int size;
cout<<"\nEnter the size of the stack\n";
cin>>size;
stack s(size);
int i,j;
cout<<"Enter "<<size<<" element\n";
for(i=0;i<size;i++)
{
cin>>j;
s.push(j);
}
s.display();
s.remove();
cout<<endl;
return 0;
}