-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactBook.cpp
650 lines (598 loc) · 17.4 KB
/
ContactBook.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
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
#include <iostream>
#include <fstream>
#include <sstream>
#include <limits>
using namespace std;
// structure to store parameters i.e., phone number and name
struct Node
{
string name;
long long int phone_number;
Node *next;
Node *prev;
};
class ContactBook
{
Node *head;
Node *tail;
string x;
long long int y;
public:
// constructor
ContactBook()
{
head = NULL;
tail = NULL;
x = "";
y = 0;
}
// function to add a new contact
void AddContact()
{
// if contactbook is empty
if(head==NULL)
{
Node *newcon = new Node;
cout <<" Name of Contact: ";
cin >> x;
newcon->name = x;
cout <<" Phone Number: ";
cin >> y;
newcon->phone_number = y;
newcon->next = NULL;
newcon->prev = NULL;
head = newcon;
tail = newcon;
cout <<"\n Contact Added Successfully" <<endl;
}
// if contactbook already has contacts
else
{
Node *newcon = new Node;
cout <<" Name of Contact: ";
cin >> x;
newcon->name = x;
cout <<" Phone Number: ";
cin >> y;
newcon->phone_number = y;
newcon->next = NULL;
tail->next = newcon;
newcon-> prev = tail;
tail = newcon;
cout <<"\n Contact Added Successfully"<<endl;
}
}
// function to display all contacts
void Display()
{
Node *temp = head;
int count = 0;
if(temp==NULL)
{
cout <<" No contacts saved..." << endl;
cout <<" Please add some contacts..." << endl;
}
else
{
BubbleSort();
cout <<" -------------------------" << endl;
cout <<" [Name] "<<" [Number] "<< endl;
cout <<" -------------------------\n" << endl;
while(temp!=NULL)
{
count++;
cout<<" "<<temp->name;
cout<<" "<<temp->phone_number<<endl;
temp=temp->next;
}
cout <<" -------------------------" <<endl;
cout <<" Total contacts: "<<count<<endl;
}
}
// function to search any contact, either by name or number
void Search()
{
if (head == NULL) {
cout << "No contacts saved..." <<endl;
cout << "Save some contacts to use the Search feature" <<endl;
}
else {
int num = 0;
Node *temp = head;
cout <<"-------------------------------------------"<<endl;
cout <<" Press 1 if you want to Search By Name." <<endl;
cout <<" Press 2 if you want to Search By Number." <<endl;
cout <<"-------------------------------------------"<<endl;
int command;
cout <<" Enter the Command: ";
cin >>command;
if(command==1 )
{
cout <<" Enter the Name to Search: ";
cin >> x;
while(temp!=NULL)
{
if(temp->name==x)
{
cout <<"-------------------------------" <<endl;
cout <<" Name : "<< temp->name <<endl;
cout <<" Number: "<< temp->phone_number <<endl;
cout <<"-------------------------------" <<endl;
num = 1;
break;
}
temp = temp->next;
}
if(num==0)
{
cout <<" Name Not Found" <<endl;
}
}
else if(command==2)
{
cout <<" Enter the Number to Search: ";
cin >> y;
while(temp!=NULL)
{
if(temp->phone_number==y)
{
cout <<"-------------------------------" <<endl;
cout <<" Name : "<<temp->name <<endl;
cout <<" Number: "<<temp->phone_number <<endl;
cout <<"-------------------------------" <<endl;
num = 1;
break;
}
temp = temp->next;
}
if(num==0)
{
cout <<" Number Not Found" <<endl;
}
}
else {
cout << "Please enter a valid command..."<<endl;
}
}
}
// function to delete all contacts
void DeleteAllContacts()
{
Node *temp = head;
Node *temp2;
if(head==NULL)
{
cout<<" Contact Book is Empty..."<<endl;
cout<<" Add some contacts to use the Delete feature"<<endl;
}
else
{
while(temp!=NULL)
{
temp2=temp;
temp=temp->next;
delete temp2;
}
head=NULL;
tail=NULL;
cout<<" Successfully Deleted All Contacts"<<endl;
}
}
// function to search and delete a specific contact
void DeleteContactBySearch()
{
Node *temp=head;
cout <<"------------------------------------------"<<endl;
cout <<" Press 1 if you want to Search By name"<<endl;
cout <<" Press 2 if you want to Search By Number"<<endl;
cout <<"------------------------------------------"<<endl;
int command;
cout <<" Enter the Command: ";
cin >>command;
// search contact by name, print it and delete it
if(command==1)
{
int num2 = 0;
cout <<" Enter the Name to Delete: ";
cin >> x;
while(temp!=NULL)
{
if(temp->name==x)
{
cout <<"------------------------------"<<endl;
cout <<" Name : "<<temp->name<<endl;
cout <<" Number: "<<temp->phone_number<<endl;
cout <<"------------------------------"<<endl;
num2 = 1;
break;
}
temp=temp->next;
}
if(num2==1)
{
int choice;
cout <<" Press 1 to Delete the Contact: ";
cin >> choice;
if(choice==1 && temp==head)
{
Node *temp1;
temp1 = temp;
temp = temp->next;
delete temp1;
temp->prev=NULL;
head = temp;
cout <<" Contact Deleted SuccessFully"<<endl;
}
else if(choice==1 && temp->next==NULL)
{
tail = temp->prev;
temp->prev->next=NULL;
delete temp;
cout <<" Contact Deleted SuccessFully"<<endl;
}
else if (choice==1)
{
Node *temp1;
temp1 = temp;
temp->prev->next = temp1->next;
temp->next->prev = temp1->prev;
delete temp1;
cout <<" Contact Deleted SuccessFully"<<endl;
}
else {
cout <<"You entered wrong command... Try again"<<endl;
}
}
else if(num2==0)
{
cout<<" Contact Not Found..."<<endl;
}
}
// search contact by number, print it and delete it
else if(command==2)
{
int num2 = 0;
cout <<" Enter the Number to Delete: ";
cin >> y;
while(temp!=NULL)
{
if(temp->phone_number==y)
{
cout <<"------------------------------"<<endl;
cout <<"name : "<<temp->name<<endl;
cout <<"Number: "<<temp->phone_number<<endl;
cout <<"------------------------------"<<endl;
num2 = 1;
break;
}
temp=temp->next;
}
if(num2==1)
{
int choice;
cout <<" Press 1 to Delete the Contact: ";
cin >> command;
if(choice==1 && temp==head)
{
Node *temp1;
temp1 = temp;
temp = temp->next;
delete temp1;
temp->prev = NULL;
head = temp;
cout <<" Contact Deleted SuccessFully"<<endl;
}
else if(choice==1 && temp->next==NULL)
{
tail = temp->prev;
temp->prev->next=NULL;
delete temp;
cout <<" Contact Deleted SuccessFully"<<endl;
}
else if(choice==1)
{
Node *temp1;
temp1=temp;
temp->prev->next = temp1->next;
temp->next->prev = temp1->prev;
delete temp1;
cout <<" Contact Deleted SuccessFully"<<endl;
}
else {
cout <<"You entered wrong command... Try again"<<endl;
}
}
else if(num2==0)
{
cout <<" Contact Not Found..."<<endl;
}
}
else
{
cout <<" You Entered a wrong Command"<<endl;
}
}
// bubblesort function to sort contacts alphabetically
void BubbleSort()
{
Node *i,*j;
string n;
long long int n2;
for(i=head;i->next!=NULL;i=i->next)
{
for(j=i->next;j!=NULL;j=j->next)
{
if(i->name>j->name)
{
n=i->name;
i->name=j->name;
j->name=n;
n2=i->phone_number;
i->phone_number=j->phone_number;
j->phone_number=n2;
}
}
}
}
// function to search and edit a contact
int EditContacts()
{
Node *temp = head;
cout <<"------------------------------------------"<<endl;
cout <<" Press 1 if you want to Search By Name"<<endl;
cout <<" Press 2 if you want to Search By Number"<<endl;
cout <<"------------------------------------------"<<endl;
int choice;
cout <<" Enter the Command: ";
cin >> choice;
// search contact by name, print it and edit it
if(choice==1)
{
int num3 = 0;
cout <<" Enter the Name to Edit: ";
cin >> x;
while(temp!=NULL)
{
if(temp->name==x)
{
cout <<"---------------------------"<<endl;
cout <<"Name : "<<temp->name<<endl;
cout <<"Number: "<<temp->phone_number<<endl;
cout <<"---------------------------"<<endl;
num3 = 1;
break;
}
temp=temp->next;
}
if(num3==1)
{
int command;
cout <<" Press 1 to Edit the Contact: ";
cin >> command;
if(command==1)
{
cout <<" Enter New Name: ";
cin >> x;
cout <<" Enter New Number: ";
cin >> y;
temp->name = x;
temp->phone_number = y;
cout <<" Contact Edited SuccessFully"<<endl;
}
else
{
cout <<" You Enter Wrong Command ... Try Again"<<endl;
}
}
else if(num3==0)
{
cout<<" Contact Not Found..."<<endl;
}
}
// search contact by number, print it and edit it.
else if(choice==2)
{
int num3 = 0;
cout <<" Enter the Number to Edit: ";
cin >> y;
while(temp!=NULL)
{
if(temp->phone_number==y)
{
cout<<"---------------------------"<<endl;
cout<<"Name : "<<temp->name<<endl;
cout<<"Number: "<<temp->phone_number<<endl;
cout<<"---------------------------"<<endl;
num3 = 1;
break;
}
temp = temp->next;
}
if(num3==1)
{
int command;
cout <<" Press 1 to Edit the Contact: ";
cin >> command;
if(command==1)
{
cout <<" Enter New Name: ";
cin >> x;
cout <<" Enter New Number: ";
cin >> y;
temp->name = x;
temp->phone_number = y;
cout <<" Contact Edited SuccessFully"<<endl;
}
else
{
cout<<" You Enter Wrong Command... Try again"<<endl;
}
}
else if(num3==0)
{
cout<<" Contact not found..."<<endl;
}
}
else
{
cout<<" You Entered a Wrong Command "<<endl;
}
}
// function to save the entered contact info in a .txt file
void OfflineSave()
{
Node *temp=head;
ofstream myfile ("contactbook.txt");
if (myfile.is_open())
{
while(temp!=NULL)
{
myfile <<temp->name <<endl;
myfile <<temp->phone_number <<endl;
temp = temp->next;
}
myfile.close();
Structure();
}
else
{
cout <<" Error! Opening file..."<<endl;
}
}
// function to read the .txt file for further actions like adding, editing or deleting
void reopenCB()
{
bool isEmpty;
ifstream myfile ("contactbook.txt"); // opening file in read mode
if (myfile.is_open() & myfile.peek() != EOF) // checking if file is open as well as not empty
{
int i=0; // initializing from line 1
while(getline(myfile,x)) // reading each line and storing it in x
{
if(i % 2 == 0) // for lines containing name
{
if(head==NULL) // if no node
{
Node *newer= new Node;
newer->name=x;
newer->next=NULL;
newer->prev==NULL;
head=newer;
tail=newer;
}
else // if atleast one node
{
Node *newer= new Node;
newer->name=x;
newer->next=NULL;
tail->next=newer;
newer->prev=tail;
tail=newer;
}
}
else // for lines containing phone number
{
Node *temp=head;
if(temp->phone_number==0) // if only one node
{
stringstream convert(x); // to convert the string datatype from getline to int
convert>>y; // storing that int in y
temp->phone_number=y;
}
else // if more than one node
{
Node *temp=head;
while(temp->next!=NULL) // iterating to the last node
{
temp=temp->next;
}
stringstream convert(x);
convert>>y;
temp->phone_number=y;
}
}
i++;
}
myfile.close(); // closing the file
}
else
{
cout<<" File is Empty so Cannot open..."<<endl; // if file is empty
}
}
// structure of the contactbook
void Structure()
{
cout<<"___________________________________________________________________________\n"<<endl;
cout<<" 1. Add Contact"<<endl;
cout<<" 2. Edit the Contact"<<endl;
cout<<" 3. Delete Contact"<<endl;
cout<<" 4. Search Contact"<<endl;
cout<<" 5. Display All Contacts"<<endl;
cout<<" 6. Delete All Contacts"<<endl;
cout<<"------------------------------"<<endl;
int Scommand;
cout <<" Enter the Command: ";
cin >> Scommand;
cout << "\n";
try
{
if(Scommand==1)
{
AddContact();
OfflineSave();
Structure();
}
else if(Scommand==2)
{
EditContacts();
OfflineSave();
Structure();
}
else if(Scommand==3)
{
DeleteContactBySearch();
OfflineSave();
Structure();
}
else if(Scommand==4)
{
Search();
Structure();
}
else if(Scommand==5)
{
Display();
Structure();
}
else if(Scommand==6)
{
DeleteAllContacts();
OfflineSave();
Structure();
}
else
{
throw(Scommand);
}
}
catch(...)
{
cout<<" You Entered a wrong Command... "<<endl;
Structure();
}
}
};
int main()
{
ContactBook cb;
cb.reopenCB();
string n;
cout<<" What is Your Name: ";
cin >> n;
cout<<"-------------------------------------------"<<endl;
cout<< " THIS IS "<< n << "'s CONTACTBOOK "<<endl;
cout<<"-------------------------------------------"<<endl;
cb.Structure();
return 0;
}