Question: Define a C++ class managing objects using a L inked List. (10 points) Define a C++ class named BirthdayList that manages a list of Birthday
Define a C++ class managing objects using a Linked List.

(10 points) Define a C++ class named "BirthdayList" that manages a list of Birthday objects as a linked list maintaining the order of entry (first birthday should be displayed first). Write a main function to show that you can add a list of birthdays and print out that list in the order that you have entered. (5 points) Add a "search" method into the "BirthdayList" class that accepts a Birthday object and returns true if it finds a Birthday object in the current list that has the same birthday information and false if not found. Show how this search method is being used and print out the right result
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
