Question: Psudocode for this project: Begin by creating a new C + + project with the project type Hello World C + + Project . For

Psudocode for this project: Begin by creating a new C++ project with the project type Hello World C++ Project. For help setting up your project in Visual Studio C++, refer to the Apporto Visual Studio Setup Instructions and Tips in the Module One Resources section. Name the project LinkedList.
Task 1: Create an internal structure for list entries, housekeeping variables. Create the structure, internal to the class, that will hold the bid entries. Consider what other variables are needed to help manage the list.
Task 2: Initialize housekeeping variables. Remember to initialize the housekeeping variables in the constructor.
Task 3: Implement append logic. Create code to append a bid to the end of the list.
Task 4: Implement prepend logic. Create code to prepend a bid to the front of the list.
Task 5: Implement print logic. Create code to print all the bid entries in the list to the console.
Task 6: Implement remove logic. Create code to remove the requested bid using the bid ID passed in.
Task 7: Implement search logic. Create code to search for the requested bid using the bid ID passed in. Return the bid structure if found or an empty bid structure if not found.
Here is sample output from running the completed program. Note that bid ID 98109 does not exist in the data file. You will have to add bid ID 98109 using Choice 1 after you have loaded the bids using Choice 2. Test your Find and Remove functions using this bid that you added.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!