-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocialNetwork.java
More file actions
1196 lines (1046 loc) · 26 KB
/
SocialNetwork.java
File metadata and controls
1196 lines (1046 loc) · 26 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
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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Xi Wu - 22C - Midterm
* This program let the user:
* -Adding a profile in the social netwrok
* -Deleting a profile in the social network
* -Update a profile's information
* -Adding/Deleting friends
*/
package socialnetwork;
import java.util.Iterator;
import java.util.Scanner;
import Midterm.AList;
public class SocialNetwork {
private static UndirectedGraph<Profile> socialNetworkProfileGraph = new UndirectedGraph<Profile>();
private static Scanner scanner = new Scanner(System.in);
public static void main(String[] args){
while (true) {
System.out.println("Welcome to the Social Network! ");
System.out.println("1: Create a profile");
System.out.println("2: Delete a profile");
System.out.println("3: Update a profile");
System.out.println("4. Search for other profiles");
System.out.println("5. Add friends");
System.out.println("6. Remove friends");
System.out.println("7: Display all profiles");
System.out.println("0: Exit \n");
System.out.println("Enter choice:");
// Catch the exception when input is invalid
Integer n = getIntInput();
if (n == null) {
continue;
}
if (n == 0) {
System.out.println("Thanks for using our social network! Have a nice day!");
break;
}
else if (n == 1) {
addProfile();
}
else if (n == 2) {
removeProfile();
}
else if (n == 3)
updateProfile();
else if (n == 4)
searchProfile();
else if (n == 5)
addFriends();
else if (n == 6)
removeFriends();
else if (n == 7) {
display();
}
System.out.println("");
}
}
/* This function add profile when user enter 1
* User can't add the same profile again
*/
public static void addProfile(){
Profile newProfile = null;
String newName = null;
while (true) {
// Get the profile's name from the user
System.out.println("Enter name:");
System.out.println("-1: Back to main menu.");
newName = scanner.nextLine();
newProfile = new Profile(newName);
if (newName.equals("-1")) {
return;
}
// Don't allow the user to add a profile that already exists.
if (getProfileFromName(newName) == null) {
// Update this profile's status
System.out.println("Enter " + newName + "'s status (online/offline/busy...): ");
String status = scanner.nextLine();
newProfile.setStatus(status);
// Update profile's image.
System.out.println("Enter " + newName + "'s image (.jpg/.png): ");
String image = scanner.nextLine();
newProfile.setImage(image);
// add a new profile to social network profile graph
socialNetworkProfileGraph.addVertex(newProfile);
System.out.println("Done adding the new profile!");
break;
}
else {
System.out.println("You can't add the existing profile. ");
return;
}
}
}
/* This function delete profile based on user's input
*
*/
public static void removeProfile() {
while (true) {
System.out.println("Which one do you want to delete? Please enter the name. ");
// Display exsiting profiles in the social network.
displayProfileNames();
System.out.println("-1: Back to main menu.");
// Get user's input and check validation
String profileToDeleteName = scanner.nextLine();
// Option to go back
if (profileToDeleteName.equals("-1")) {
return;
}
Profile profileToDelete = getProfileFromName(profileToDeleteName);
// Remove the profile, ask the user to enter again if the input doesn't exist
if(getProfileFromName(profileToDeleteName) != null) {
socialNetworkProfileGraph.removeVertex(profileToDelete);
System.out.println("Done removing the profile!");
break;
}
else {
System.out.println(profileToDeleteName + " is not in our social network. Please enter a valid input.");
}
}
}
/*
* This function update profile
*/
public static void updateProfile() {
while (true) {
System.out.println("Which one do you want to update? Please enter the name. ");
// Display exsiting profiles in the social network.
displayProfileNames();
System.out.println("-1: Back to main menu.");
// Get the name of the profile and check invalidation
String profileToUpdateName = scanner.nextLine();
// Handle the "go back" option
if (profileToUpdateName.equals("-1")) {
return;
}
// Based on the input name to find the profile.
Profile profileToUpdate = getProfileFromName(profileToUpdateName);
// Ask the user to enter again if the input is not in socialNetworkProfileList.
if(getProfileFromName(profileToUpdateName) != null) {
while (true) {
System.out.println("Which information do you want to update? ");
System.out.println("-1: Back to main menu.");
System.out.println("1: name ");
System.out.println("2: image");
System.out.println("3: status");
// Get the specific choice of the profile
Integer choice;
choice = getIntInput();
if (choice == null) {
continue;
}
if (choice == -1) {
return;
}
if (choice == 1) { // Update profile's name
System.out.println("What's the new name?");
String name = scanner.nextLine();
profileToUpdate.setName(name);
break;
} else if (choice == 2) { // Update profile's image
System.out.println("What's the new image?");
String image = scanner.nextLine();
profileToUpdate.setImage(image);
break;
} else if (choice == 3) { // Update profile's status
System.out.println("What's the new status?");
String status = scanner.nextLine();
profileToUpdate.setStatus(status);
break;
} else { // Check the input's validation
System.out.println("Out of option. Please enter again: ");
}
}
// Display a message to user
System.out.println("Done! Updated profile:");
printProfile(profileToUpdate);
break;
}
else {
System.out.println(profileToUpdateName + " is not in our social network. Please enter a valid input.");
}
}
}
/*
* This function search profile based on user's input
*/
public static void searchProfile() {
while (true) {
System.out.println("Enter the name you want to search: ");
System.out.println("-1: Back to main menu.");
String searchName = scanner.nextLine();
if (searchName.equals("-1")) {
return;
}
// change user's input into Profile
Profile profileToSearch = getProfileFromName(searchName);
if(getProfileFromName(searchName) != null) {
System.out.println(searchName + " is in our social network.\n");
printProfile(profileToSearch);
break;
}
else {
System.out.println("Not Found. Please enter again.");
}
}
}
/*
* This function add profile's friends
* User can't add him/herself as a friend
*/
public static void addFriends() {
// Check if there are profiles in social network
if (socialNetworkProfileGraph.getNumberOfVertices() == 0){
System.out.println("There's no user in our social network, please add some profile first!");
}
// Check if there is only one profile in social network
else if (socialNetworkProfileGraph.getNumberOfVertices() == 1) {
System.out.println("There's only you in this social network.");
}
else {
while (true) {
// Get profile's name from user
System.out.println("\nSelect profile adding friend, please enter a name: ");
// Display exsiting profiles in the social network.
displayProfileNames();
System.out.println("-1: Back to main menu.");
// Get the name of the profile and check invalidation
String friendsName = scanner.nextLine();
if (friendsName.equals("-1")) {
return;
}
// change user's input into Profile
Profile profileToAddFriends = getProfileFromName(friendsName);
if(getProfileFromName(friendsName) != null) {
while (true) {
System.out.println("Who will be " + profileToAddFriends.getName() + "'s new friend? Please enter the name.");
System.out.println("-1: Back to main menu.");
String newFriend = scanner.nextLine();
if (newFriend.equals(friendsName)) {
System.out.println("You can't add yourself.");
break;
}
if (newFriend.equals("-1")) {
return;
}
// change user's input into Profile
Profile newFriendProfile = getProfileFromName(newFriend);
if(getProfileFromName(newFriend) != null) {
// Add a friend to this selected profile
socialNetworkProfileGraph.addEdge(profileToAddFriends, newFriendProfile);
System.out.println("Done to add a new friend!");
}
else {
System.out.println(newFriend + " is not in the network. ");
}
// add more friends
// display friends list
displayFriendsList(profileToAddFriends);
return;
}
}
else {
System.out.println(friendsName + " is not in our social network. Please enter again.");
}
}
}
}
/*
* This function remove friends based on user's input
*/
public static void removeFriends() {
Profile aFriendToRemoveProfile = null;
String aFriendToRemoveName = null;
while (true) {
// Get the profile's name from the user
System.out.println("Select profile to remove friends. Please enter name: ");
displayProfileNames();
System.out.println("-1: Back to main menu.");
// Get the name of the profile and check invalidation
aFriendToRemoveName = scanner.nextLine();
if (aFriendToRemoveName.equals("-1")) {
return;
}
// change user's input into Profile
aFriendToRemoveProfile = getProfileFromName(aFriendToRemoveName);
// Handle the case when total number of friends in this social network is less than 1.
if (!hasFriend(aFriendToRemoveProfile)) {
System.out.println("No friends to delete. Please add friends first.");
return;
}
// Ask the user to enter again if the input is not in socialNetworkProfileList.
if (getProfileFromName(aFriendToRemoveName) != null) {
break;
}
else {
System.out.println(aFriendToRemoveName + " is not in our social network. Please enter again.");
}
}
while (true) {
displayFriendsList(aFriendToRemoveProfile);
System.out.println("Who will be deleted? Please enter name.");
System.out.println("-1: Back to main menu.");
// Get the name of the friend's profile and check invalidation
String bFriendToRemoveName = scanner.nextLine();
// Provide go back function
if (bFriendToRemoveName.equals("-1")) {
return;
}
if (bFriendToRemoveName.equals(aFriendToRemoveName)) {
System.out.println("You can't delete yourself!");
break;
}
Profile bFriendToRemoveProfile = getProfileFromName(bFriendToRemoveName);
// Remove the friend.
// Ask the user to enter again if the input is out of index in the friends list.
if(getProfileFromName(bFriendToRemoveName) != null) {
// Delete the friend
socialNetworkProfileGraph.removeEdge(aFriendToRemoveProfile, bFriendToRemoveProfile);
System.out.println("Done removing the friend!");
break;
} else {
System.out.println("You don't have him/her as your friend.");
}
}
}
/*
* This function display all the profiles
* including each profile's specific information and their friends' name and friends' friends' name
*/
public static void display() {
System.out.println("---------- Profiles -----------");
int count = 1;
Iterator<Profile> it = socialNetworkProfileGraph.getVerticesKeyIterator();
while(it.hasNext()) {
Profile profile = it.next();
System.out.println(count + ".");
printProfile(profile);
System.out.println("\n");
count++;
}
}
/*
* This is a helper function to check the integer input's validation
*/
private static Integer getIntInput() {
Integer input = null;
try {
input = Integer.parseInt(scanner.nextLine());
} catch (Exception e) {
System.out.println("Please enter a valid number.");
}
return input;
}
// This function display all the profie's names
// The names would show on the menu
private static void displayProfileNames() {
Iterator<Profile> it = socialNetworkProfileGraph.getVerticesKeyIterator();
while(it.hasNext()) {
System.out.println(it.next().getName());
}
}
// This is a helper function
// based on selected profile's name to find the profile and return the profile
private static Profile getProfileFromName(String name) {
Iterator<Profile> it = socialNetworkProfileGraph.getVerticesKeyIterator();
while (it.hasNext()) {
Profile profile = it.next();
if (profile.getName().equals(name)) {
return profile;
}
}
return null;
}
// Display the name of friend's friend based on selected profile
private static void printProfile(Profile profile) {
AList<String> immediateFriendNames = new AList<String>();
immediateFriendNames.add(profile.getName()); // Include myself
// Update the immediate friends.
Iterator<VertexInterface<Profile>> it = socialNetworkProfileGraph.getVertex(profile).getNeighborIterator();
while (it.hasNext()) {
VertexInterface<Profile> thisFiend = it.next();
String thisFriendName = thisFiend.getLabel().getName();
immediateFriendNames.add(thisFriendName);
}
System.out.println(profile.toString());
// print profile's friends
displayFriendsList(profile);
// print friends' friends
System.out.println("Friends' friends: ");
QueueInterface<Profile> q = socialNetworkProfileGraph.getBreadthFirstTraversal(profile);
printQueue(q, immediateFriendNames);
}
// Print the name of friend's friend through breadFirstTraversal
public static void printQueue(QueueInterface<Profile> q, AList<String> immediateFriendNames)
{
while (!q.isEmpty()) {
Profile profile = q.dequeue();
if (!immediateFriendNames.contains(profile.getName())) {
System.out.print(profile.getName()+ " ");
}
}
}
// Display the selected profile's friends list based on input
private static void displayFriendsList(Profile profile) {
Iterator<VertexInterface<Profile>> it = socialNetworkProfileGraph.getVertex(profile).getNeighborIterator();
System.out.println(profile.getName() + "'s friend(s):");
while (it.hasNext()) {
VertexInterface<Profile> thisFiend = it.next();
String thisFriendName = thisFiend.getLabel().getName();
System.out.println(thisFriendName + " ");
}
}
// Return if the profile has a friend
private static boolean hasFriend(Profile profile) {
return socialNetworkProfileGraph.getVertex(profile).hasNeighbor();
}
}
/*Output:
* Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
1
Enter name:
-1: Back to main menu.
joyce
Enter joyce's status (online/offline/busy...):
busy
Enter joyce's image (.jpg/.png):
joyce.jpg
Done adding the new profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
1
Enter name:
-1: Back to main menu.
celine
Enter celine's status (online/offline/busy...):
online
Enter celine's image (.jpg/.png):
celine.jpg
Done adding the new profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
1
Enter name:
-1: Back to main menu.
xi
Enter xi's status (online/offline/busy...):
lazy
Enter xi's image (.jpg/.png):
xi.png
Done adding the new profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
1
Enter name:
-1: Back to main menu.
wu
Enter wu's status (online/offline/busy...):
sad
Enter wu's image (.jpg/.png):
wu.jpg
Done adding the new profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
1
Enter name:
-1: Back to main menu.
a
Enter a's status (online/offline/busy...):
a
Enter a's image (.jpg/.png):
a.jpg
Done adding the new profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
2
Which one do you want to delete? Please enter the name.
a
wu
xi
celine
joyce
-1: Back to main menu.
a
Done removing the profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
7
---------- Profiles -----------
1.
name = wu,
image = wu.jpg,
status = sad,
wu's friend(s):
Friends' friends:
2.
name = xi,
image = xi.png,
status = lazy,
xi's friend(s):
Friends' friends:
3.
name = celine,
image = celine.jpg,
status = online,
celine's friend(s):
Friends' friends:
4.
name = joyce,
image = joyce.jpg,
status = busy,
joyce's friend(s):
Friends' friends:
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
5
Select profile adding friend, please enter a name:
wu
xi
celine
joyce
-1: Back to main menu.
wu
Who will be wu's new friend? Please enter the name.
-1: Back to main menu.
xi
Done to add a new friend!
wu's friend(s):
xi
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
7
---------- Profiles -----------
1.
name = wu,
image = wu.jpg,
status = sad,
wu's friend(s):
xi
Friends' friends:
2.
name = xi,
image = xi.png,
status = lazy,
xi's friend(s):
wu
Friends' friends:
3.
name = celine,
image = celine.jpg,
status = online,
celine's friend(s):
Friends' friends:
4.
name = joyce,
image = joyce.jpg,
status = busy,
joyce's friend(s):
Friends' friends:
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
5
Select profile adding friend, please enter a name:
wu
xi
celine
joyce
-1: Back to main menu.
wu
Who will be wu's new friend? Please enter the name.
-1: Back to main menu.
joyce
Done to add a new friend!
wu's friend(s):
xi
joyce
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
7
---------- Profiles -----------
1.
name = wu,
image = wu.jpg,
status = sad,
wu's friend(s):
xi
joyce
Friends' friends:
2.
name = xi,
image = xi.png,
status = lazy,
xi's friend(s):
wu
Friends' friends:
joyce
3.
name = celine,
image = celine.jpg,
status = online,
celine's friend(s):
Friends' friends:
4.
name = joyce,
image = joyce.jpg,
status = busy,
joyce's friend(s):
wu
Friends' friends:
xi
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
4
Enter the name you want to search:
-1: Back to main menu.
bob
Not Found. Please enter again.
Enter the name you want to search:
-1: Back to main menu.
xi
xi is in our social network.
name = xi,
image = xi.png,
status = lazy,
xi's friend(s):
wu
Friends' friends:
joyce
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
3
Which one do you want to update? Please enter the name.
wu
xi
celine
joyce
-1: Back to main menu.
wu
Which information do you want to update?
-1: Back to main menu.
1: name
2: image
3: status
1
What's the new name?
wu5
Done! Updated profile:
name = wu5,
image = wu.jpg,
status = sad,
wu5's friend(s):
xi
joyce
Friends' friends:
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
6
Select profile to remove friends. Please enter name:
wu5
xi
celine
joyce
-1: Back to main menu.
-1
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
5
Select profile adding friend, please enter a name:
wu5
xi
celine
joyce
-1: Back to main menu.
tao
tao is not in our social network. Please enter again.
Select profile adding friend, please enter a name:
wu5
xi
celine
joyce
-1: Back to main menu.
1
1 is not in our social network. Please enter again.
Select profile adding friend, please enter a name:
wu5
xi
celine
joyce
-1: Back to main menu.
-1
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
1
Enter name:
-1: Back to main menu.
tao
Enter tao's status (online/offline/busy...):
busy
Enter tao's image (.jpg/.png):
.jpg
Done adding the new profile!
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
5
Select profile adding friend, please enter a name:
tao
wu5
xi
celine
joyce
-1: Back to main menu.
tao
Who will be tao's new friend? Please enter the name.
-1: Back to main menu.
xi
Done to add a new friend!
tao's friend(s):
xi
Welcome to the Social Network!
1: Create a profile
2: Delete a profile
3: Update a profile
4. Search for other profiles
5. Add friends
6. Remove friends
7: Display all profiles
0: Exit
Enter choice:
7
---------- Profiles -----------
1.
name = tao,
image = .jpg,
status = busy,
tao's friend(s):
xi
Friends' friends:
wu5 joyce
2.
name = wu5,
image = wu.jpg,
status = sad,