-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyLinkedList.cpp
More file actions
223 lines (168 loc) · 3.59 KB
/
KeyLinkedList.cpp
File metadata and controls
223 lines (168 loc) · 3.59 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
#include "KeyLinkedList.h"
#include <QDebug>
KeyLinkedList::KeyLinkedList()
{
this->head = this->tail = nullptr;
return;
}
KeyLinkedList::KeyLinkedList(const KeyLinkedList& list)
: head(nullptr) ,
tail(nullptr)
{
KeyNode* temp = list.head;
while (temp)
{
this->pushBack(temp->getKey());
temp = temp->getNext();
}
return;
}
KeyLinkedList::KeyLinkedList(KeyLinkedList&& list)
{
this->head = list.head;
this->tail = list.tail;
list.head = list.tail = nullptr;
return;
}
KeyLinkedList::~KeyLinkedList() // Edited By Arash
{
KeyNode* temp = this->head;
KeyNode* t = nullptr;
while (temp)
{
t = temp->getNext();
delete temp;
temp = nullptr;
temp = t;
}
head = tail = nullptr;
return;
}
void KeyLinkedList::setHead(KeyNode* head)
{
this->head = head;
return;
}
void KeyLinkedList::setTail(KeyNode* tail)
{
this->tail = tail;
return;
}
KeyNode* KeyLinkedList::getHead()
{
return this->head;
}
KeyNode* KeyLinkedList::getTail()
{
return this->tail;
}
void KeyLinkedList::pushBack(unsigned long long key)
{
if(this->head == nullptr)
{
addFront(key);
return;
}
KeyNode* new_node = new KeyNode(key, nullptr, this->tail);
this->tail->setNext(new_node);
this->tail = new_node;
return;
}
void KeyLinkedList::addFront(unsigned long long key)
{
KeyNode* new_node = new KeyNode(key, this->head, nullptr);
if(this->head)
this->head->setPrev(new_node);
this->head = new_node;
if(this->tail == nullptr)
{
this->tail = new_node;
}
return;
}
bool KeyLinkedList::dellKey(unsigned long long key)
{//????????????????????
if(this->head->getKey() == key)
{
KeyNode* temp = this->head;
this->head = temp->getNext();
temp = nullptr;
delete temp;
return true;
}
else if (this->tail->getKey() == key)
{
KeyNode* temp = this->tail;
this->tail = temp->getPrev();
temp = nullptr;
delete temp;
return true;
}
KeyNode* temp = this->head->getNext();
while (temp)
{
if(temp->getKey() == key)
{
KeyNode* temp_next = temp->getNext();
KeyNode* temp_prev = temp->getPrev();
temp_prev->setNext(temp_next);
temp_next->setPrev(temp_prev);
temp = nullptr;
delete temp;
return true;
}
temp = temp->getNext();
}
return false;
}
void KeyLinkedList::operator=(KeyLinkedList x)
{
this->~KeyLinkedList();
KeyNode* t = x.getHead();
while (t)
{
this->pushBack(t->getKey());
t = t->getNext();
}
return;
}
unsigned long long KeyLinkedList::get(int index){
const int SIZE = size();
if (index < SIZE) {
KeyNode* temp = head;
for (int i = 0; i < index; i++) {
temp = temp->getNext();
}
return temp->getKey();
}
else {
exit(1);
}
}
int KeyLinkedList::size(){ // Added By Arash
KeyNode* temp = head;
int i = 0;
while (temp != nullptr){
temp = temp->getNext();
i++;
}
return i;
}
// Added By Arash
bool KeyLinkedList::containsKey(unsigned long long key){
KeyNode *temp = head;
while (temp != nullptr){
if (temp->getKey() == key)
return true;
temp = temp->getNext();
}
return false;
}
void KeyLinkedList::print()
{
KeyNode *temp = head;
while (temp)
{
temp = temp->getNext();
}
}