#include <iostream> #include <cstring> struct ToDoList { std::string start_time; std::string activity_name; int time_for_activity; ToDoList *next; }; void add_node(ToDoList * & head, std::string start, std::string activity,int time ) { ToDoList* temp; temp = new ToDoList; temp-> start_time = start; temp-> activity_name = activity; temp-> time_for_activity = time; temp-> next = head; head = temp; temp = temp->next; }//in theory this should add another node to the list but it isn't working int main() { int ans, i = 0; std::string start; std::string activity; int time; ToDoList* head = NULL; ToDoList* a; std::cout << "Enter the start time in HH:MM am format: "; std::getline(std::cin, start); std::cout << "Enter the activity name: "; std::getline(std::cin, activity); std::cout << "Enter the time for the activity: "; std::cin >> time; //~ add_node(head); add_node(head,start,activity,time); 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"; std::cin >> ans; while(ans != 3)//This should print all the values in the list { std::cin.ignore(); if(ans == 0) { std::cout << "Enter the start time in HH:MM am format: "; std::getline(std::cin, start); std::cout << "Enter the activity name: "; std::getline(std::cin, activity); std::cout << "Enter the time for the activity: "; std::cin >> time; add_node(head,start,activity,time); } else if( ans == 1 ) { a = head; while(a != NULL )//loop used for printing { std::cout << i << " " << a->start_time << " " << a->activity_name << " " << a->time_for_activity << "\n"; a = a -> next; i++; } i = 0;//resets integer i } 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"; std::cin >> ans; } return 0; }
30 0 11:00 am Lunch 60 1 3
Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2 Delete a node 3 Quit Enter the start time in HH:MM am format: Enter the activity name: Enter the time for the activity: Welcome to the Linked list menu! What would you like to do? 0 Add a Node 1 Display the list 2