Question: Looking for C + + to read and output file accordingly using a hash table. In this project, you will demonstrate your mastery of the

Looking for C++ to read and output file accordingly using a hash table.
In this project, you will demonstrate your mastery of the following competency: Develop code using algorithms and data structures to solve basic programming problems Scenario The academic advisors in the Computer Science department at ABCU are very happy with the planning and design you have completed for the advising assistance software. They have decided they would like you to move forward with writing the code for the application so the department advisors can start using this to help when they talk with students. Directions All of your coding will be completed in the integrated development environment (IDE). Additional references on the use of this IDE are linked in the Supporting Materials section. As you begin coding, you will be using the data structure that you recommended in Project One to complete the following. Input: Design code to correctly read the course data file. The program you will submit will be a command-line program written in C++. You will prompt the user to ask for the file name that contains the course data and read that file into course objects that are stored in your chosen data structure. Your data structure will hold course objects. Menu: Design code to create a menu that prompts a user for menu options. The menu should include the following options: Load Data Structure: Load the file data into the data structure. Note that before you can print the course information or the sorted list of courses, you must load the data into the data structure. Print Course List: This will print an alphanumeric list of all the courses in the Computer Science department. Print Course: This will print the course title and the prerequisites for any individual course. Exit: This will exit you out of the program. Loading Data Structure: Develop working code to load data from the file into the data structure. Course List: Develop working code to sort and print out a list of the courses in the Computer Science program in alphanumeric order (including all math courses). To print out a course list, use the pseudocode you created previously to guide your work. Then, create code that will allow advisers to print a course list in alphanumeric order. Remember that this code should do the following: Sort the course information alphanumerically from lowest to highest. Print the sorted list to a display. Course Information: Develop working code to print course information. This code should allow users to look up a course and print out information about its title and prerequisites. Your program will need to prompt the user to enter the courseNumber. You will then print out the name of the course along with the prerequisite courseNumbers and titles. See Project Two Sample Program Output in the Supporting Documents section. Industry Standard Best Practices: Apply industry standard best practices in code design. Your program should display an error message when user input does not fall within parameters. You should also use in-line comments and appropriate naming conventions to enhance readability and maintainability. ABCU Advising Program Input(in .txt file) MATH201,Discrete Mathematics CSCI300,Introduction to Algorithms,CSCI200,MATH201 CSCI350,Operating Systems,CSCI300 CSCI101,Introduction to Programming in C++,CSCI100 CSCI100,Introduction to Computer Science CSCI301,Advanced Programming in C++,CSCI101 CSCI400,Large Software Development,CSCI301,CSCI350 CSCI200,Data Structures,CSCI101------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ CS 300 Project Two Sample Program Output The text below is a sample execution of your program. User input is indicated in bold, although it will not be displayed the same way when you run your program. Welcome to the course planner. 1. Load Data Structure. 2. Print Course List. 3. Print Course. 9. Exit What would you like to do?88 is not a valid option. 1. Load Data Structure. 2. Print Course List. 3. Print Course. 9. Exit What would you like to do?2 Here is a sample schedule: CSCI100, Introduction to Computer Science CSCI101, Introduction to Programming in C++ CSCI200, Data Structures CSCI301, Advanced Programming in C++ CSCI300, Introduction to Algorithms CSCI350, Operating Systems CSCI400, Large Software Development MATH201, Discrete Mathematics 1. Load Data Structure. 2. Print Course List. 3. Print Course. 9. Exit What would you like to do?3 What course do you want to know about? csci400 CSCI400, Large Software Development Prerequisites: CSCI301, CSCI3501. Load Data Structure. 2. Print Course List.

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 Programming Questions!