-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDouble Ended Queue.cpp
More file actions
252 lines (244 loc) · 4.99 KB
/
Copy pathDouble Ended Queue.cpp
File metadata and controls
252 lines (244 loc) · 4.99 KB
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
248
249
250
251
252
///Double Ended Queue
#include<iostream>
#include<stdio.h>
using namespace std;
template <typename TYPE>
struct NODE
{
TYPE value;
NODE *next,*previous;
};
template <class TYPE>
class MyDoubleLinkedList
{
NODE<TYPE> *head,*tail;
int Size;
public:
MyDoubleLinkedList()
{
head=NULL;
tail=NULL;
Size=0;
}
MyDoubleLinkedList(const MyDoubleLinkedList &x) //Copy Constructor
{
Size=x.Size;
if(x.head==NULL)
{
head=tail=NULL;
}
else{
NODE<TYPE> *temp=new NODE<TYPE>,*tempX=x.head;
head=temp;
head->value=tempX->value;
head->previous=NULL;
tempX=tempX->next;
while(tempX!=NULL)
{
NODE<TYPE> *temp2=new NODE<TYPE>;
temp2->value=tempX->value;
temp2->previous=temp;
temp->next=temp2;
temp=temp->next;
tempX=tempX->next;
}
tail=temp;
tail->next=NULL;
}
}
void push_back(TYPE x)
{
NODE<TYPE> *temp=new NODE<TYPE>;
temp->value=x;
Size++;
temp->next=NULL;
if(head==NULL)
{
head=tail=temp;
head->previous=NULL;
}
else{
tail->next=temp;
temp->previous=tail;
tail=tail->next;
}
}
void push_front(TYPE x)
{
NODE<TYPE> *temp=new NODE<TYPE>;
temp->value=x;
Size++;
temp->previous=NULL;
if(head==NULL)
{
head=tail=temp;
temp->next=NULL;
}
else{
temp->next=head;
head->previous=temp;
head=head->previous;
}
}
TYPE pop_back()
{
if(head==NULL)
{
printf("List is Empty!\n");
return -1;
}
TYPE x=tail->value;
if(head==tail)
{
delete head;
head=tail=NULL;
Size=0;
return x;
}
NODE<TYPE> *temp=tail;
tail=tail->previous;
tail->next=NULL;
delete temp;
Size--;
return x;
}
TYPE pop_front()
{
if(head==NULL)
{
printf("List is empty!\n");
return -1;
}
TYPE x=head->value;
if(head==tail)
{
delete head;
head=tail=NULL;
Size=0;
return x;
}
NODE<TYPE> *temp=head;
head=head->next;
head->previous=NULL;
Size--;
delete temp;
return x;
}
void display()
{
NODE<TYPE> *temp=head;
printf("List is: ");
if(head==NULL) printf("Empty!!\n");
else{
while(temp!=NULL)
{
cout<<temp->value<<" ";
temp=temp->next;
}
printf("\n");
}
}
void reverse_display()
{
NODE<TYPE> *temp=tail;
printf("Reverse List is: ");
if(head==NULL) printf("Empty!!\n");
else{
while(temp!=NULL)
{
cout<<temp->value<<" ";
temp=temp->previous;
}
printf("\n");
}
}
bool empty()
{
if(head==NULL) return true;
return false;
}
int size()
{
return Size;
}
TYPE front()
{
if(head!=NULL) return head->value;
return -1;
}
TYPE back()
{
if(tail!=NULL) return tail->value;
return -1;
}
int search(TYPE x) //return index
{
NODE<TYPE> *temp=head;
int index=0;
while(temp!=NULL)
{
if(temp->value==x)
return index;
index++;
temp=temp->next;
}
return -1;
}
~MyDoubleLinkedList()
{
NODE<TYPE> *temp;
while(head!=NULL)
{
temp=head;
head=head->next;
delete temp;
}
Size=0;
tail=NULL;
}
};
template <class TYPE>
class MyDeQueue{
MyDoubleLinkedList<TYPE> qq;
public:
void push_back(TYPE x)
{
qq.push_back(x);
}
void push_front(TYPE x)
{
qq.push_front(x);
}
TYPE pop_back()
{
return qq.pop_back();
}
TYPE pop_front()
{
return qq.pop_front();
}
TYPE front()
{
return qq.front();
}
TYPE back()
{
return qq.back();
}
void display()
{
qq.display();
}
int size()
{
return qq.size();
}
bool empty()
{
return qq.empty();
}
};
int main()
{
return 0;
}