-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedList.h
320 lines (281 loc) · 8.16 KB
/
LinkedList.h
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#include <iostream>
#include <iomanip>
#include <ctime>
#include "LinkedListNode.h"
#include "./sorts/sortByPriority.h"
#include "./sorts/sortByCreationTime.h"
#include "./sorts/sortByName.h"
#include "./searches/searchByID.h"
#include "./searches/searchByName.h"
using namespace std;
class LinkedList
{
private:
LinkedListNode *head;
LinkedListNode *tail;
int size;
public:
LinkedList() : head(nullptr), tail(nullptr), size(0) {}
~LinkedList()
{
while (head != nullptr)
{
LinkedListNode *temp = head;
head = head->next;
delete temp;
}
}
// method to add a new node (i.e. ticket) to the list
void add(const Ticket &ticket)
{
LinkedListNode *newNode = new LinkedListNode(ticket);
if (head == nullptr)
{
head = tail = newNode;
}
else
{
tail->next = newNode;
tail = newNode;
}
size++;
}
// method to remove a ticket from the list
bool remove(int ticketID)
{
LinkedListNode *current = head;
LinkedListNode *previous = nullptr;
while (current != nullptr)
{
if (current->ticket.id == ticketID)
{
if (previous == nullptr)
{
head = current->next;
}
else
{
previous->next = current->next;
}
if (current == tail)
{
tail = previous;
}
delete current;
size--;
return true;
}
previous = current;
current = current->next;
}
return false;
}
// method to search for a particular ticket in the list using ticket ID
Ticket *searchByID(int ticketID, int choice)
{
if (choice == 0)
{
Ticket *result = linearSearchID(head, ticketID);
return result;
// return (linearSearch(head, ticketID));
}
else if (choice == 1)
{
Ticket *ticketArray = new Ticket[size]; // empty tickets array
LinkedListNode *current = head;
// copying tickets from linked list to array
for (int i = 0; i < size; i++)
{
ticketArray[i] = current->ticket;
current = current->next;
}
// to apply binary search, list must be sorted...!
sortID(ticketArray, size);
Ticket *result = binarySearchID(ticketArray, size, ticketID);
// delete[] ticketArray;
return result;
}
else if (choice == 2)
{
return interpolationSearchID(head, size, ticketID);
}
cout << "Invalid choice for search algorithm. Using the default i.e. Linear Search" << endl;
return linearSearchID(head, ticketID);
}
// method to search for a ticket using ticket name
Ticket *searchByName(string ticketName, int choice)
{
if (choice == 0)
{
Ticket *result = linearSearchName(head, ticketName);
return result;
// return (linearSearch(head, ticketID));
}
else if (choice == 1)
{
Ticket *ticketArray = new Ticket[size]; // empty tickets array
LinkedListNode *current = head;
// copying tickets from linked list to array
for (int i = 0; i < size; i++)
{
ticketArray[i] = current->ticket;
current = current->next;
}
// to apply binary search, list must be sorted...!
sortName(ticketArray, size);
Ticket *result = binarySearchName(ticketArray, size, ticketName);
// delete[] ticketArray;
return result;
}
else if (choice == 2)
{
cout << "Interpolation is not available for searching by name. Using the default i.e. Linear Search" << endl;
return linearSearchName(head, ticketName);
}
cout << "Invalid choice for search algorithm. Using the default i.e. Linear Search" << endl;
return linearSearchName(head, ticketName);
}
// method to display all the tickets in the list
void displayAll() const
{
LinkedListNode *temp = head;
while (temp != nullptr)
{
cout << "---------------\n";
cout << "Ticket ID: " << temp->ticket.id
<< ", Customer: " << temp->ticket.customerName
<< ", Priority: " << temp->ticket.priority
<< ", Creation Time: " << put_time(localtime(&temp->ticket.creationTime), "%Y-%m-%d %H:%M:%S")
<< ", Status: " << (temp->ticket.isOpen ? "Open" : "Closed") << "\n";
if (!temp->ticket.isOpen)
{
cout << "Close Time: " << &temp->ticket.closeTime << endl;
}
temp = temp->next;
}
cout << "--------------------------------------------------------------------------------------\n";
}
// method to sort the tickets, based on priority
void sortByPriority(int choice)
{
// Insertion Sort
if (choice == 0)
{
insertionSortSBP(head);
}
// Bubble Sort
else if (choice == 1)
{
bubbleSortSBP(head);
}
// Selection Sort
else if (choice == 2)
{
selectionSortSBP(head);
}
// Quick Sort
else if (choice == 3)
{
head = quickSortSBP(head, getTail(head));
}
// Merge Sort
else if (choice == 4)
{
head = mergeSortSBP(head);
}
// Exceptional Case...!
else
{
cout << "Invalid Choice for sorting algorithm. Using the Default i.e. Insertion Sort" << endl;
insertionSortSBP(head);
}
}
// method to sort the tickets based on ticket's creation time
void sortByCreationTime(int choice)
{
// Insertion Sort
if (choice == 0)
{
insertionSortSBC(head);
}
// Bubble Sort
else if (choice == 1)
{
bubbleSortSBC(head);
}
// Selection Sort
else if (choice == 2)
{
selectionSortSBC(head);
}
// Quick Sort
else if (choice == 3)
{
head = quickSortSBC(head, getTail(head));
}
// Merge Sort
else if (choice == 4)
{
head = mergeSortSBC(head);
}
// Exceptional Case...!
else
{
cout << "Invalid Choice for sorting algorithm. Using the Default i.e. Insertion Sort" << endl;
insertionSortSBC(head);
}
}
// method to sort the tickets based on Customer Name on ticket
void sortByCustomerName(int choice)
{
// Insertion Sort
if (choice == 0)
{
insertionSortSBN(head);
}
// Bubble Sort
else if (choice == 1)
{
bubbleSortSBN(head);
}
// Selection Sort
else if (choice == 2)
{
selectionSortSBN(head);
}
// Quick Sort
else if (choice == 3)
{
head = quickSortSBN(head, getTail(head));
}
// Merge Sort
else if (choice == 4)
{
head = mergeSortSBN(head);
}
// Exceptional Case...!
else
{
cout << "Invalid Choice for sorting algorithm. Using the Default i.e. Insertion Sort" << endl;
insertionSortSBN(head);
}
}
LinkedListNode *getTail(LinkedListNode *node)
{
while (node != nullptr && node->next != nullptr)
{
node = node->next;
}
return node;
}
// get the size of the list (i.e. number of tickets in the list)
int getSize() const
{
return size;
}
// helper function to get the head of the list
LinkedListNode *getHead() const
{
return head;
}
};