fork download
  1. #include <iostream>
  2. #include <cstring>
  3.  
  4. struct ToDoList
  5. {
  6. std::string start_time;
  7. std::string activity_name;
  8. int time_for_activity;
  9. ToDoList *next;
  10. };
  11.  
  12. void add_node(ToDoList * & head, std::string start, std::string activity,int time )
  13. {
  14. ToDoList* temp;
  15. temp = new ToDoList;
  16. temp-> start_time = start;
  17. temp-> activity_name = activity;
  18. temp-> time_for_activity = time;
  19. temp-> next = head;
  20. head = temp;
  21. temp = temp->next;
  22. }//in theory this should add another node to the list but it isn't working
  23.  
  24. int main()
  25. {
  26. int ans, i = 0;
  27. std::string start;
  28. std::string activity;
  29. int time;
  30. ToDoList* head = NULL;
  31. ToDoList* a;
  32. std::cout << "Enter the start time in HH:MM am format: ";
  33. std::getline(std::cin, start);
  34. std::cout << "Enter the activity name: ";
  35. std::getline(std::cin, activity);
  36. std::cout << "Enter the time for the activity: ";
  37. std::cin >> time;
  38. //~ add_node(head);
  39. add_node(head,start,activity,time);
  40.  
  41. std::cout << "\nWelcome to the Linked list menu! What would you like to do? \n0 Add a Node \n1 Display the list \n2 Delete a node \n3 Quit \n";
  42. std::cin >> ans;
  43. while(ans != 3)//This should print all the values in the list
  44. {
  45. std::cin.ignore();
  46. if(ans == 0)
  47. {
  48. std::cout << "Enter the start time in HH:MM am format: ";
  49. std::getline(std::cin, start);
  50. std::cout << "Enter the activity name: ";
  51. std::getline(std::cin, activity);
  52. std::cout << "Enter the time for the activity: ";
  53. std::cin >> time;
  54. add_node(head,start,activity,time);
  55.  
  56. }
  57. else if( ans == 1 )
  58. {
  59. a = head;
  60. while(a != NULL )//loop used for printing
  61. {
  62. std::cout << i << " " << a->start_time << " " << a->activity_name << " " << a->time_for_activity << "\n";
  63. a = a -> next;
  64. i++;
  65. }
  66. i = 0;//resets integer i
  67. }
  68. std::cout << "\nWelcome to the Linked list menu! What would you like to do? \n0 Add a Node \n1 Display the list \n2 Delete a node \n3 Quit \n";
  69. std::cin >> ans;
  70. }
  71. return 0;
  72. }
Runtime error #stdin #stdout 0s 3464KB
stdin
30
0
11:00 am 
Lunch
60
1
3
stdout
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2 Delete a node 
3 Quit 
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: 
Welcome to the Linked list menu! What would you like to do? 
0 Add a Node 
1 Display the list 
2