Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Automating Access Databases With Macros

Authors: Fish Davis

1st Edition

1797816349, 978-1797816340

More Books

Students also viewed these Databases questions