-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.cpp
247 lines (242 loc) · 5.46 KB
/
Stack.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
//It contains extra functions which may have complexity of N [O(N)]
#include<iostream>
#include<cstdio>
#define dbg(x) {cout<<#x<<" --- "<<x<<endl;}
using namespace std;
template <typename TYPE>
struct NODE{
TYPE value;
NODE *next;
};
template <class TYPE>
class MyLinkedList{
NODE<TYPE> *head,*tail;
int Size;
public:
MyLinkedList(){ //Constructor
head=NULL;
tail=NULL;
Size=0;
}
MyLinkedList(const MyLinkedList &x){ //Copy Constructor
if(x.head==NULL){
head=tail=NULL;
Size=0;
}
else{
Size=0;
NODE<TYPE> *temp=x.head;
NODE<TYPE> *temp2=new NODE<TYPE>,*temp3;
head=temp2;
head->value=temp->value;
Size++;
temp=temp->next;
while(temp!=NULL)
{
temp3 = new NODE<TYPE>;
temp3->value=temp->value;
temp=temp->next;
temp2->next=temp3;
temp2=temp2->next;
Size++;
}
temp2->next=NULL;
tail=temp2;
}
}
void push_front(TYPE x){
NODE<TYPE> *temp= new NODE<TYPE>;
temp->value=x;
if(head==NULL){
temp->next=NULL;
head=tail=temp;
}
else{
temp->next=head;
head=temp;
}
Size++;
}
void push_back(TYPE x){
NODE<TYPE> *temp=new NODE<TYPE>;
temp->value=x;
temp->next=NULL;
if(head==NULL){
head=tail=temp;
}
else{
tail->next=temp;
tail=tail->next;
}
Size++;
}
TYPE pop_front(){
if(head==NULL){
printf("List is empty!!\n");
return -1;
}
Size--;
NODE<TYPE> *temp=head;
TYPE x=temp->value;
if(head==tail){
delete temp;
head=tail=NULL;
return x;
}
head=head->next;
delete temp;
return x;
}
TYPE pop_back(){ //Order of N!!
if(head==NULL){
printf("List is Empty!!\n");
return -1;
}
TYPE x;
NODE<TYPE> *temp=head,*temp2;
if(head->next==NULL){
x=head->value;
delete head;
head=tail=NULL;
return x;
}
while(temp->next->next!=NULL) temp=temp->next;
temp2=temp->next;
temp->next=NULL;
tail=temp;
x=temp2->value;
delete temp2;
return x;
}
void display(){
NODE<TYPE> *temp=head;
while(temp!=NULL){
cout<<temp->value<<" ";
temp=temp->next;
}
printf("\n");
}
int search(TYPE x){
NODE<TYPE> *temp=head;
int pos=0;
if(head==NULL) return -1;
while(temp!=NULL){
if(temp->value==x) return pos;
temp=temp->next;
pos++;
}
return -1;
}
int size(){
return Size;
}
TYPE front(){
if(head!=NULL) return head->value;
return -1;
}
TYPE back(){
if(tail!=NULL) return tail->value;
return -1;
}
bool empty(){
if(Size==0) return true;
return false;
}
~MyLinkedList(){
NODE<TYPE> *temp;
while(head!=NULL){
temp=head;
head=head->next;
delete temp;
}
tail=NULL;
Size=0;
}
};
template <class TYPE>
class MyStack{
MyLinkedList<TYPE> ll;
public:
void push(TYPE x)
{
ll.push_front(x);
}
TYPE pop()
{
return ll.pop_front();
}
TYPE front()
{
return ll.front();
}
int size()
{
return ll.size();
}
bool empty()
{
return ll.empty();
}
void display()
{
ll.display();
}
int search(TYPE x)
{
return ll.search(x);
}
};
int main()
{
MyStack<float> ss;
int q;
float x;
printf("1. Push element at the top of the Stack\n");
printf("2. Pop element from the top of the Stack\n");
printf("3. Print the Stack\n");
printf("4. Show the peek element of the Stack\n");
printf("5. Search an element in the Stack and show its position\n");
printf("6. Quit\n");
while(1)
{
printf(">>>");
scanf("%d",&q);
if(q==1)
{
printf("Value: ");
cin>>x;
ss.push(x);
}
else if(q==2)
{
x=ss.pop();
if(x!=-1)
cout<<x<<" is popped out!!\n";
else printf("Stack is empty!!\n");
}
else if(q==3)
{
printf("Stack is:\n");
ss.display();
}
else if(q==4)
{
x=ss.front();
cout<<"Peek value is: "<<x<<"\n";
}
else if(q==5)
{
printf("Value: ");
cin>>x;
int y=ss.search(x);
if(y==-1) cout<<x<<" is not found!!\n";
else
cout<<"Position of "<<x<<" is "<<y<<"\n";
}
else if(q==6)
{
break;
}
}
return 0;
}