-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomStructures.h
330 lines (274 loc) · 5.14 KB
/
CustomStructures.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
321
322
323
324
325
326
327
328
329
330
#pragma once
#include <string>
#include <ctime>
struct Topic {
std::string name;
int colorARGB;
Topic() {
name = "";
colorARGB = 0;
}
Topic(std::string name, int colorARGB) {
this->name = name;
this->colorARGB = colorARGB;
}
};
struct Note {
std::string header;
std::string body;
Topic topic;
time_t creationTime;
int indexInMainList;
Note() {
creationTime = time(NULL);
}
Note(std::string header, std::string body, Topic topic, int mainIndex = -1) {
this->header = header;
this->body = body;
this->topic = topic;
this->indexInMainList = mainIndex;
creationTime = time(NULL);
}
/*
Getting a string representation of the creation time.
Format "HH:MM dd.mm.YY".
*/
char* getTime();
/*
Ñhecking for equality of notes.
*/
bool equals(Note* anotherNote);
};
// Sigle-linked list of notes.
struct NotesList {
struct NotesNode {
Note note;
NotesNode* next;
NotesNode(Note note, NotesNode* next = nullptr) {
this->note = note;
this->next = next;
}
};
private:
int size;
NotesNode* head;
public:
/*
The default constructor, that set head of the
list to nullptr and size of the list to 0.
*/
NotesList() {
head = nullptr;
size = 0;
}
/*
Use to add an element (Note) to specified index in the list.
*/
void add(Note value, int index);
/*
Use to add an element (Note) as the last one in the list.
*/
void add(Note value);
/*
Use to delete specified element from the list.
*/
void remove(int index);
/*
Use to delete the last element from the list.
*/
void remove();
/*
Use to get an element of the list at specified index.
*/
Note* elementAt(int index);
/*
Use to get the last element of the list.
*/
Note* elementLast();
/*
Use to delete all the elements from list.
*/
void clear();
/*
Use to get size of the list.
*/
int getSize();
/*
Use to check if list is empty.
*/
bool isEmpty();
/*
The default destructor.
*/
~NotesList() {
clear();
}
};
// Sigle-linked list of pointers to notes.
struct NotesPointersList {
struct NotesNode {
Note* note;
NotesNode* next;
NotesNode(Note* note, NotesNode* next = nullptr) {
this->note = note;
this->next = next;
}
};
private:
int size;
NotesNode* head;
public:
/*
The default constructor, that set head of the
list to nullptr and size of the list to 0.
*/
NotesPointersList() {
head = nullptr;
size = 0;
}
/*
Use to add an element (pointer to Note) to specified index in the list.
*/
void add(Note* value, int index);
/*
Use to add an element (pointer to Note) in correct position by date.
*/
void add(Note* value);
/*
Use to add an element (pointer to Note) as the last one in the list.
*/
void addLast(Note* value);
/*
Use to delete specified element from the list.
*/
void remove(int index);
/*
Use to delete specified element from the list.
*/
void remove(Note* specifiedNote);
/*
Use to delete the last element from the list.
*/
void remove();
/*
Use to get an element of the list at specified index.
*/
Note* elementAt(int index);
/*
Use to find index of Note in NotesList.
Returns -1 if the Note wasn't found.
*/
int indexOf(Note* specificNote);
/*
Use to get the last element of the list.
*/
Note* elementLast();
/*
Use to delete all the elements from list.
*/
void clear();
/*
Use to get size of the list.
*/
int getSize();
/*
Use to check if list is empty.
*/
bool isEmpty();
/*
The default destructor.
*/
~NotesPointersList() {
clear();
}
};
// Sigle-linked list of topics.
struct TopicsList {
private:
struct Node {
Topic topic;
NotesPointersList notes;
Node* next;
Node(Topic topic, Node* next = nullptr) {
this->topic = topic;
this->next = next;
}
};
Node* head;
int size;
public:
/*
The default constructor, that set head of the
list to nullptr and size of the list to 0.
*/
TopicsList() {
head = nullptr;
size = 0;
}
/*
Use to add an element (Topic) to specified index in the list.
*/
void add(Topic value, int index);
/*
Use to add an element (Topic) as the last one in the list.
*/
void add(Topic value);
/*
Use to delete specified Topic from the list.
*/
void remove(int index);
/*
Use to delete the last Topic from the list.
*/
void remove();
/*
Use to remove an existing topic.
*/
void removeByTopic(Topic topic);
/*
Use to get an element of the list at specified index.
*/
Topic& topicAt(int index);
/*
Use to get the last element of the list.
*/
Topic& lastTopic();
/*
Use to get an existing topic.
*/
Topic& getExistingTopic(std::string topic);
/*
Use to get an existing topic's notes list.
*/
NotesPointersList* getExistingTopicsNotesList(std::string topic);
/*
Use to get an element of the list at specified index.
*/
NotesPointersList* topicNotesListAt(int index);
/*
Use to get the last element of the list.
*/
NotesPointersList* lastTopicNotesList();
/*
Use to find out if the topic exists
*/
bool isTopicExists(std::string topic);
/*
Use to delete all the elements from list.
*/
void clear();
/*
Use to get size of the list.
*/
int getSize();
/*
Use to check if list is empty.
*/
bool isEmpty();
/*
The default destructor.
*/
~TopicsList() {
clear();
}
};