-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
321 lines (311 loc) · 7.29 KB
/
main.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
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
321
/**
* @file todolist.cpp
* @author Muhib Arshad(@muhib7353 at everyone)
* @brief Time Complexity: have worst case O(log n) and best case O(1)
* @date Time:22 Jan,2022 _14:38
*/
#include <iostream>
#include <string>
using namespace std;
int Length = 0;
//===============NODE=================
class ListItem
{
public:
int id;
string item;
ListItem *nextAdd;
ListItem() : id(0), item(""), nextAdd(NULL) {}
};
//===============MENU_DRIVEN_LAYOUT=================
class Layout
{
int choosedOption;
public:
Layout() : choosedOption(0) {}
virtual int page()
{
defaultPadding();
cout << "____________YOUR TODOLIST_______________\n";
defaultPadding();
cout << "Enter 1. To add the todo list item \n";
defaultLeftPadding();
cout << "Enter 2. To check done the todo list item \n";
defaultLeftPadding();
cout << "Enter 3. To see the todoList \n";
defaultLeftPadding();
cout << "Enter 0. to Exit \n";
cin >> choosedOption;
return choosedOption;
}
void defaultTopPadding()
{
for (int i = 0; i < 3; i++)
cout << "\n";
}
void defaultLeftPadding()
{
cout << "\t\t\t";
}
void defaultPadding()
{
defaultTopPadding();
defaultLeftPadding();
}
};
//===============ADD_PAGE_LAYOUT================
class AddPage : public Layout
{
int addOption;
public:
AddPage() : addOption(0) {}
int page()
{
system("clear");
defaultPadding();
cout << "____________ADD TODO LIST ITEM_______________\n";
if (Length == 0)
{
return 1;
}
defaultPadding();
cout << "Enter 1. To add at start of list\n";
defaultLeftPadding();
cout << "Enter 2. To add at bottom of list \n";
if (Length >= 2)
{
defaultLeftPadding();
cout << "Enter 3. To add at any middle position of list \n";
}
cin >> addOption;
return addOption;
}
};
//===============DONE_PAGE_LAYOUT=================
class DonePage : public Layout
{
int doneOption;
public:
DonePage() : doneOption(0) {}
int page()
{
system("clear");
defaultPadding();
cout << "____________DONE TODO LIST ITEM_______________\n";
defaultPadding();
cout << "Enter id number to done item.\n";
cin >> doneOption;
return doneOption;
}
};
//===============MAIN_APPLICATION_CLASS=================
class TodoList_Application : public Layout
{
int addType;
int removedID;
Layout *layout;
ListItem *head;
ListItem *tail;
public:
TodoList_Application() : head(NULL), tail(NULL)
{
layout = new Layout();
applicationNavigation();
}
void applicationNavigation()
{
bool currPage = true;
do
{
switch (layout->page())
{
case 0:
{
cout << "Quiting...........\n";
currPage = false;
break;
}
case 1:
{
layout = new AddPage();
addType = layout->page();
add();
layout = new Layout;
system("clear");
break;
}
case 2:
{
layout = new DonePage();
display();
removedID = layout->page();
done();
layout = new Layout;
system("clear");
break;
}
case 3:
{
system("clear");
display();
break;
}
}
} while (currPage);
}
void add()
{
if (addType == 1)
{
addItemAtStart();
}
if (addType == 2)
{
addItemAtEnd();
}
if (addType == 3)
{
addItemAtMiddle();
}
}
void addItemAtStart()
{
if (head == NULL)
{
head = tail = new ListItem;
defaultPadding();
cout << "Enter the list item: ";
cin.ignore();
getline(cin, head->item);
Length = length();
return;
}
ListItem *newItem = new ListItem;
defaultPadding();
cout << "Enter the list item: ";
cin.ignore();
getline(cin, newItem->item);
newItem->nextAdd = head;
head = newItem;
Length = length();
}
void addItemAtEnd()
{
if (tail == NULL)
{
head = tail = new ListItem;
defaultPadding();
cout << "Enter the list item: ";
cin.ignore();
getline(cin, tail->item);
Length = length();
return;
}
ListItem *newItem = new ListItem;
defaultPadding();
cout << "Enter the list item: ";
cin.ignore();
getline(cin, newItem->item);
tail->nextAdd = newItem;
tail = newItem;
Length = length();
}
void addItemAtMiddle()
{
display();
defaultPadding();
cout << "Enter ID place, where to add item :";
int pos;
cin >> pos;
if (pos == 1)
{
addItemAtStart();
Length = length();
return;
}
ListItem *newItem = new ListItem;
defaultPadding();
cout << "Enter the list item: ";
cin.ignore();
getline(cin, newItem->item);
int cur = 1;
ListItem *temp = head;
while (cur < pos - 1)
{
temp = temp->nextAdd;
cur++;
}
if (temp->nextAdd == NULL)
{
addItemAtEnd();
Length = length();
return;
}
newItem->nextAdd = temp->nextAdd;
temp->nextAdd = newItem;
Length = length();
}
void done()
{
ListItem *cur = head;
ListItem *prev = NULL;
if (removedID == 1)
{
head = head->nextAdd;
cur->nextAdd = NULL;
delete cur;
}
else
{
int count = 1;
while (count < removedID)
{
prev = cur;
cur = cur->nextAdd;
count++;
}
prev->nextAdd = cur->nextAdd;
cur->nextAdd = NULL;
delete cur;
}
Length = length();
}
void display()
{
defaultPadding();
if (Length == 0)
{
cout << "List is Empty! Press 1 to add\n";
return;
}
cout << "Your TodoList: \n";
ListItem *temp = head;
int count = 1;
defaultPadding();
while (temp != NULL)
{
temp->id = count;
cout << temp->id << ". " << temp->item << "\n";
temp = temp->nextAdd;
count++;
defaultLeftPadding();
}
}
int length()
{
ListItem *temp = head;
int count = 0;
while (temp != NULL)
{
temp = temp->nextAdd;
count++;
}
return count;
}
};
using namespace std;
int main()
{
TodoList_Application newApp;
return 0;
}