Design your own linked list ll class to hold customer names


Design your own linked list (LL) class to hold customer names and phone numbers. The class should have member functions for appending, inserting, deleting, searching and displaying nodes. You should also have a constructor and a destructor for the class. You should also have a copy constructor for the class. Demonstrate the class with a driver program. Your driver program should show each case of functions. Your output of the program should have the following information: - Initially create 10 customer names and phone numbers in the LL - alphabetically ordered by the customer name. Print out the LL Aker, 692-4456, Clay, 688-1234, Davis, 691-3453, Gibson, 697-8909, Jacobs, 692-6785 Klock, 688-6754, Rook, 688-3453, Schade, 697-0987, Small, 688-4533, Sutton, 697-3344 - Insert two new customer names and phone numbers in the appropriate position in the linked list. Print out the LL. Rubin, 688-2233, Sander, 697-1242 - Search Target customer name and phone number, print out the target customer name and phone number. Davis - Delete Target customer name and phone number, print out the LL. Davis, 691-3453 - Append one customer name and phone number, print out the LL. Waack, 697-8760, Weber, 688-7656

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Design your own linked list ll class to hold customer names
Reference No:- TGS0569420

Expected delivery within 24 Hours