Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Has to be in C++ Language String toFind and integer numData are read from input. Then, numData alphabetically sorted strings are read from input and
Has to be in C++ Language
String toFind and integer numData are read from input. Then, numData alphabetically sorted strings are read from input and each string is appended to a vector. In the FindData() function: - If toFind is found at index middlelndex of the vector, output toFind, followed by " is found at index ", the value of middlelndex, and a newline. - Else, if rangeSize is 1 , output toFind, followed by " is not in the list" and a newline. Ex: If the input is: mar 5 arm bag mar not pun then the output is: mar is found at index 2 Note: string1 == string2 returns true if the two strings are the same, and returns false otherwise. \( \begin{array}{ll}31 & \text { dataList.push_back(item); } \\ 32 & \} \\ 33 & \text { FindData(dataList, toFind, } \theta, \text { dataList.size }()-1) ; \\ 34 & \\ 35 & \text { return } 0 ; \\ 36\} & \end{array} \)Step 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