Question: Write a C++ singly linked list program which asks the user to provide the following information for as many airports as they like: 1). Standard
Write a C++ singly linked list program which asks the user to provide the following information for as many airports as they like:
1). Standard 3 character airport code.
2). Distance from New York City's LaGuardia Airport to the specified airport, in miles.- The head of the list should be represented with an element whose value is 'LGA' and whose distance is 0.
- Airport codes will be provided in order of closest to furthest away.
- Create a singly linked list to house each of the airports as a node in the same order in which it was provided (nearest to furthest).
- Each node should contain both the airport code and the entered distance.
- Once the list is built, develop an additional function which allows the user -to search for a user-specified code and then output all other codes and distances which follow it in the list.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
