Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use C++ Text file link https://drive.google.com/file/d/15EWYOSH8e8tzJBy0QpsL_U6DEDnJDsUS/view?usp=sharing Sample output Our satisfied clients are back to ask us to implement another interactive dictionary. Our dictionary takes input
Use C++
Text file link
https://drive.google.com/file/d/15EWYOSH8e8tzJBy0QpsL_U6DEDnJDsUS/view?usp=sharing
Sample output
Our satisfied clients are back to ask us to implement another interactive dictionary. Our dictionary takes input from users and uses the input as search key to look up values associated with the key. Requirements - Coding: No hard coding, https://en.wikipedia.org/wiki/Hard coding - Data Source: a text file, Data.CS.SFSU.txt - Data Loading: When our program starts, it loads all the original data from the data source into our dictionary's data structure. The data source file is opened once and closed once per run. It must be closed as soon as possible. It must be closed before our program starts interacting with users. Data Structure: Use existing data structure(s) or create new data structure(s) to store our dictionary's data. Each keyword each part of speech, and each definition must be stored in a separate data field. Do not combine them such as storing three parts in one String User Interface: A program interface allows users to input search keys. This interface then displays returned results. Our program searches the dictionary's data (not the data source text file) for values associated with the search keys. - - - Identical Output: Our program's output must be identical to the complete sample run's output: ASMTO2_PC Run.pdf 1. Program Analysis to Program Design, 10 points In 1 full page, please explain the following in detail Your analysis of the provided information and the provided sample output. Compare to the ASMT 01 Java version What problem you are solving. How it is different from that of ASMT 01 How you load data from the data source. What the steps are. Why these steps. Which data structure(s) you use/create for your dictionary. And why 2. Program Implementation, 25 points Does your program work properly? How will you improve your program? Sample run (not the complete run) ' - Opening data file ! Loading data... ! Loading completed 1 Closing data file... ./Data.Cs.SEsu.txt Data.CS.SESU.txt Search: plAcEholDER Placeholder [adjectivel To be updated... Placeholder [adjectivel To be updated Placeholder [adverb] To be updated.. Our satisfied clients are back to ask us to implement another interactive dictionary. Our dictionary takes input from users and uses the input as search key to look up values associated with the key. Requirements - Coding: No hard coding, https://en.wikipedia.org/wiki/Hard coding - Data Source: a text file, Data.CS.SFSU.txt - Data Loading: When our program starts, it loads all the original data from the data source into our dictionary's data structure. The data source file is opened once and closed once per run. It must be closed as soon as possible. It must be closed before our program starts interacting with users. Data Structure: Use existing data structure(s) or create new data structure(s) to store our dictionary's data. Each keyword each part of speech, and each definition must be stored in a separate data field. Do not combine them such as storing three parts in one String User Interface: A program interface allows users to input search keys. This interface then displays returned results. Our program searches the dictionary's data (not the data source text file) for values associated with the search keys. - - - Identical Output: Our program's output must be identical to the complete sample run's output: ASMTO2_PC Run.pdf 1. Program Analysis to Program Design, 10 points In 1 full page, please explain the following in detail Your analysis of the provided information and the provided sample output. Compare to the ASMT 01 Java version What problem you are solving. How it is different from that of ASMT 01 How you load data from the data source. What the steps are. Why these steps. Which data structure(s) you use/create for your dictionary. And why 2. Program Implementation, 25 points Does your program work properly? How will you improve your program? Sample run (not the complete run) ' - Opening data file ! Loading data... ! Loading completed 1 Closing data file... ./Data.Cs.SEsu.txt Data.CS.SESU.txt Search: plAcEholDER Placeholder [adjectivel To be updated... Placeholder [adjectivel To be updated Placeholder [adverb] To be updatedStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started