Introduction - If you have any usage issues, please Google them yourself
A simple airline ticket reservation program
Prerequisites, Goals, and Outcomes
Prerequisites: Students should have mastered the following prerequisite skills.
• Pointers- Using pointers to indirectly reference and modify objects
• Linked Lists- Understanding of a linked list implementation
• Dynamic Memory Management- Use of new and delete
Goals: This assignment is designed to reinforce the student s understanding of linked lists.
Outcomes: Students successfully completing this assignment would master the following outcomes.
• Understand implementation of linked lists
• Use pointers
• Use dynamic memory management
Description
A simple airline ticket reservation program should display a menu with the following options: reserve a ticket, cancel a reservation, check whether a ticket is reserved for a particular person, and display the passengers. The information is maintained on an alphabetized linked list of names. In a simpler version of t