-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueue.cpp
203 lines (191 loc) · 4.14 KB
/
Queue.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
#include<iostream>
#include<stdio.h>
#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 MyQueue{
MyLinkedList<TYPE> qq;
public:
void push(TYPE x)
{
qq.push_back(x);
}
TYPE pop()
{
return qq.pop_front();
}
TYPE front()
{
return qq.front();
}
TYPE back()
{
return qq.back();
}
bool empty()
{
return qq.empty();
}
int size()
{
return qq.size();
}
void display()
{
qq.display();
}
};
int main()
{
return 0;
}