Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Program Challenge: C++ Word Index Write a program that reads the contents of a text File. The program should create a map in which the
Program Challenge: C++
Word Index Write a program that reads the contents of a text File. The program should create a map in which the key-value pairs are described as follows .Key-The keys are the individual words found in the file Values-Each value is a set that contains the line numbers in the file where the word (the key) is found For example, suppose the word "robot" is found in lines 7, 18, 94, and 138. The map would contain an element in which the key was the string "robot", and the value was a set containing the numbers 7, 18, 94, and 138 Once the map is built, the program should create another text File, known as a word index, listing the contents of the map. The word index file should contain an alphabetical listing of the words that are stored as keys in the map, along with the line numbers where the words appears in the original file. Figure 17-9 shows an example of an original text File (Kennedy.txt) and its index file (index.txt). Hint: See Chapter 10 for a discussion of string tokenizing Figure 17-9 Example original file and index file Kennedy tat-Noteped File Edit Farmat View Help ke abserve today not a victory of party but a celebration of freedon symbo11zing an end as well as a beginning signifying renewal as well as change index.tt-Netepad Fie Edt Forrnat View ke: 1 a: 1 2 4 as: 4 5 6 beginning: 4 but: 2 celebration: 2 change: 6 end: 3 freedom: 3 not: 1 observe: 1 of: 2 3 Ln 12, Col party: 2 renewal: 5 signifying: s symbo11zing: 3 today: 1 victory: 1 NR11:45 Ln 21, Col1Step 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