-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrarySystem.cpp
More file actions
588 lines (529 loc) · 14.2 KB
/
LibrarySystem.cpp
File metadata and controls
588 lines (529 loc) · 14.2 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
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
#include<iostream>
#include<string>
#include "LibrarySystem.h"
#include <cstddef>
using namespace std;
/*
Saitcan Baskol
21803589
SEC02
*/
LibrarySystem::LibrarySystem()
{
Size = 0;
head = NULL;
bookSize = 0;
bookHead = NULL;
}
LibrarySystem::~LibrarySystem()
{
while(!isEmpty())
{
removeNode(1);
}
while(!isBooksEmpty())
{
removeBookNode(1);
}
}
void LibrarySystem::addStudent(const int studentId,const string studentName)
{
bool notExist = true;
int newLength;
if(studentId > 0)
{
if(getLength() == 0)
{
Node* temp = new Node();
temp->item = Student(studentId,studentName);
temp->next = NULL;
head = temp;
newLength = getLength() + 1;
Size = newLength;
cout<<"Student:"<<studentId<<" Has been added"<<endl;
return;
}
Node* cur = head;
for(int i = 1; i <= getLength(); i++)
{
if(cur->item.getId() == studentId)
{
notExist = false;
}
cur = cur->next;
}
if(notExist)
{
Node* prev = findPointer(getLength());
Node* temp = new Node();
temp->item = Student(studentId,studentName);
prev->next = temp;
temp->next = NULL;
Size++;
cout<<"Student: "<<studentId <<" Has been added"<<endl;
}
else
{
cout<<"Student "<<studentId<<" already exists"<<endl;
}
}
}
bool LibrarySystem::isEmpty() const
{
return Size == 0;
}
bool LibrarySystem::isBooksEmpty()const
{
return bookSize == 0;
}
int LibrarySystem::getLength() const
{
return Size;
}
int LibrarySystem::getLengthBooks() const
{
return bookSize;
}
int LibrarySystem::findIndex(int studentId)
{
Node* cur = head;
for(int i = 1; i <= getLength();i++)//here
{
if(cur->item.getId() == studentId)
{
return i;
}
cur = cur->next;
}
}
int LibrarySystem::findBookIndex(int bookId)
{
allBooksNode* cur = bookHead;
for(int i = 1; i <= getLengthBooks();i++)//here
{
if(cur->item.getBookId() == bookId)
{
return i;
}
cur = cur->next;
}
}
LibrarySystem::Node* LibrarySystem::findPointer(int index) const
{
Node* cur = head;
for(int i = 1; i < index; i++)//here
{
cur = cur->next;
}
return cur;
}
LibrarySystem::allBooksNode* LibrarySystem::findBookPointer(int index) const
{
allBooksNode* cur = bookHead;
for(int i = 1; i < index; i++)
{
cur = cur->next;
}
return cur;
}
bool LibrarySystem::removeNode(int index)
{
Node* cur;
if ((index < 1) || (index > getLength()))
{
return false;
}
Size--;
if(index == 1)
{
cur = head;
head = head->next;
}
else
{
Node* prev = findPointer(index - 1);
cur = prev->next;
prev->next = cur->next;
}
cur->next = NULL;
delete cur;
cur = NULL;
return true;
}
bool LibrarySystem::removeBookNode(int index)
{
allBooksNode* cur;
if ((index < 1) || (index > getLengthBooks()))
{
return false;
}
bookSize--;
if(index == 1)
{
cur = bookHead;
bookHead = bookHead->next;
}
else
{
allBooksNode* prev = findBookPointer(index - 1);
cur = prev->next;
prev->next = cur->next;
}
cur->next = NULL;
delete cur;
cur = NULL;
return true;
}
void LibrarySystem::addBook(const int bookId,const string bookName,const int bookYear)
{
bool notExist = true;
int newLength;
if(getLengthBooks() == 0)
{
allBooksNode* temp = new allBooksNode();
temp->item = Book(bookId,bookName,bookYear);
temp->next = NULL;
bookHead = temp;
newLength = getLengthBooks() + 1;
bookSize = newLength;
cout<<"Book:"<<bookId<<" Has been added"<<endl;
return;
}
allBooksNode* cur = bookHead;
for(int i = 1; i <= getLengthBooks(); i++)
{
if(cur->item.getBookId() == bookId)
{
notExist = false;
}
cur = cur->next;
}
if(notExist)
{
allBooksNode* prev = findBookPointer(getLengthBooks());
allBooksNode* temp = new allBooksNode();
temp->item = Book(bookId,bookName,bookYear);
prev->next = temp;
temp->next = NULL;
bookSize++;
cout<<"Book: "<<bookId <<" Has been added"<<endl;
}
else
{
cout<<"Book "<<bookId<<" already exists"<<endl;
}
}
void LibrarySystem::checkoutBook(const int bookId,const int studentId)
{
bool bookExist = false;
bool studentExist = false;
Node* cur = head;
int stuIndex;
int bookIndex;
allBooksNode* curBook = bookHead;
for(int i = 1; i <= getLengthBooks(); i++)
{
if(curBook->item.getBookId() == bookId)
{
if(curBook->item.getStatus() == true)
{
bookExist = true;
bookIndex = i;
}
else
{
cout<<"Book: "<<bookId<<" Has been checked out by another student "<<endl;
return;
}
}
curBook = curBook->next;
}
if(bookExist)
{
for(int i = 1; i <= getLength(); i++)
{
if(cur->item.getId() == studentId)
{
studentExist = true;
stuIndex = i;
}
cur = cur->next;
}
}
else
{
cout<<"Book :"<<bookId<<" does not exist for checkout"<<endl;
}
if(bookExist == true && studentExist == true)
{
Node* stuTemp = findPointer(stuIndex);
allBooksNode* bookTemp = findBookPointer(bookIndex);
if(stuTemp->item.getLength() == 0)
{
Student::studentBookNode* temp = new Student::studentBookNode();
temp->item = bookTemp->item;
temp->next = NULL;
stuTemp->item.stuhead = temp;
stuTemp->item.studentBooks++;
cout<<"Book: "<<bookId<<" Has been checked out by student: "<<studentId<<endl;
bookTemp->item.setStatus(false);
return;
}
else
{
Student::studentBookNode* prev = stuTemp->item.findPointer(stuTemp->item.getLength());
Student::studentBookNode* temp = new Student::studentBookNode();
temp->item = bookTemp->item;
temp->next = NULL;
prev->next = temp;
stuTemp->item.studentBooks++;
cout<<"Book: "<<bookId<<" Has been checked out by student: "<<studentId<<endl;
bookTemp->item.setStatus(false);
}
}
else
{
cout<<"Student: "<<studentId<<" does not exist for checkout"<<endl;
}
}
void LibrarySystem::returnBook(const int bookId)
{
bool bookExist = false;
int bookIndex;
int stuIndex;
allBooksNode* curBook = bookHead;
int counter = 1;
for(int i = 1; i <= getLengthBooks();i++)
{
if(curBook->item.getBookId() == bookId)
{
if(curBook->item.getStatus() == false)
{
bookIndex = i;
bookExist = true;
}
}
curBook = curBook->next;
}
if(bookExist)
{
Student::studentBookNode* prev;
curBook = findBookPointer(bookIndex);
Student::studentBookNode* curSTN;
for(Node* cur = head; cur != NULL;cur = cur->next)
{
for(Student::studentBookNode* temp = cur->item.stuhead; temp!= NULL;temp = temp->next)
{
if(temp->item.getBookId() == bookId)
{
if(cur->item.findIndex(bookId) == 1)
{
curSTN = cur->item.stuhead;
cur->item.stuhead = cur->item.stuhead->next;
cur->item.studentBooks--;
curSTN->next = NULL;
delete curSTN;
curSTN = NULL;
curBook->item.setStatus(true);
cout<<"Book: "<<bookId<<" Has been returned"<<endl;
}
else
{
prev = cur->item.findPointer(counter - 1);
curSTN = prev->next;
prev->next = curSTN->next;
cur->item.studentBooks--;
curSTN->next = NULL;
delete curSTN;
curSTN = NULL;
curBook->item.setStatus(true);
cout<<"Book: "<<bookId<<" Has been returned"<<endl;
}
}
counter++;
}
counter = 1;
}
}
else
{
cout<<"Book "<<bookId<<" has not been checked out"<<endl;
}
}
void LibrarySystem::showBook(const int bookId) const
{
bool exist = false;
int bookIndex;
int studentIndex;
Node* stu;
allBooksNode* tmp;
for(allBooksNode* cur = bookHead; cur!= NULL; cur = cur->next)
{
if(cur->item.getBookId() == bookId)
{
tmp = cur;
exist = true;
}
}
if(exist)
{
if(tmp->item.getStatus() == false)
{
for(Node* temp = head; temp!= NULL;temp = temp->next)
{
for(Student::studentBookNode* stuBook = temp->item.stuhead; stuBook!= NULL;stuBook = stuBook->next)
{
if(stuBook->item.getBookId() == bookId)
{
stu = temp;
}
}
}
cout<<"Book Id Book name Year Status"<<endl;
cout<<tmp->item.getBookId()<<" "<<tmp->item.getBookName()<<" "<<tmp->item.getBookYear()<<" "<<"Checked out by student "<<stu->item.getName()<<endl;
}
else
{
cout<<"Book Id Book name Year Status"<<endl;
cout<<tmp->item.getBookId()<<" "<<tmp->item.getBookName()<<" "<<tmp->item.getBookYear()<<" "<<"Not checked Out"<<endl;
}
}
else
{
cout<<"Book does not exist"<<endl;
}
}
void LibrarySystem::showAllBooks() const
{
for(allBooksNode* cur = bookHead; cur!= NULL;cur = cur->next)
{
showBook(cur->item.getBookId());
}
}
void LibrarySystem::showStudent(const int studentId) const
{
bool exist = false;
Node* stuPtr;
for(Node* cur = head; cur != NULL; cur = cur->next)
{
if(cur->item.getId() == studentId)
{
exist = true;
stuPtr = cur;
}
}
if(exist)
{
if(stuPtr->item.getLength() == 0)
{
cout<<"Student id:"<<stuPtr->item.getId()<<" Student name "<<stuPtr->item.getName()<<endl;
cout<<"Student "<<stuPtr->item.getId()<<" has no books"<<endl;
}
else
{
cout<<"Student id:"<<stuPtr->item.getId()<<" Student name "<<stuPtr->item.getName()<<endl;
cout<<"Student "<<stuPtr->item.getId()<<" has checked out following books"<<endl;
cout<<"Book id Book name Year"<<endl;
for(Student::studentBookNode* stubookptr = stuPtr->item.stuhead;stubookptr != NULL;stubookptr = stubookptr->next )
{
cout<<stubookptr->item.getBookId()<<" "<<stubookptr->item.getBookName()<<" "<<stubookptr->item.getBookYear()<<endl;
}
}
}
else
{
cout<< "Student "<<studentId<<" does not exists"<<endl;
}
}
void LibrarySystem::deleteBook(const int bookId)
{
bool exist = false;
int index;
int counter = 1;
allBooksNode* prev;
allBooksNode* curr;
for(allBooksNode*cur = bookHead; cur!= NULL; cur = cur->next)
{
if(cur->item.getBookId() == bookId)
{
exist = true;
index = counter;
}
counter++;
}
if(exist)
{
bookSize--;
if(index == 1)
{
returnBook(bookId);
curr = bookHead;
bookHead = bookHead->next;
cout<<"Book "<<bookId<<" has been deleted"<<endl;
}
else
{
returnBook(bookId);
prev = findBookPointer(index - 1);
curr = prev->next;
prev->next = curr->next;
cout<<"Book "<<bookId<<" has been deleted"<<endl;
}
curr->next = NULL;
delete curr;
curr = NULL;
}
else
{
cout<<"Book "<<bookId<< " does not exists"<<endl;
}
}
void LibrarySystem::deleteStudent(const int studentId)
{
bool exist = false;
int index;
int counter = 1;
for(Node* cur = head; cur != NULL; cur = cur->next)
{
if(cur->item.getId() == studentId)
{
exist = true;
index = counter;
}
counter++;
}
if(exist)
{
Node* cur;
Node* prev;
Size--;
Node* curr = findPointer(index);
Student::studentBookNode* st = curr->item.stuhead;
while(st!=NULL)
{
Student::studentBookNode* tm = st->next;
returnBook(st->item.getBookId());
st = tm;
}
if(index == 1)
{
cur = head;
head = head->next;
cout<<"Student "<<studentId<<" has been deleted"<<endl;
}
else
{
prev = findPointer(index - 1);
cur = prev->next;
prev->next = cur->next;
cout<<"Student "<<studentId<<" has been deleted"<<endl;
}
cur->next = NULL;
delete cur;
cur = NULL;
}
else
{
cout<<"Student "<<studentId<<" does not exists"<<endl;
}
}