Question: 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
Get step-by-step solutions from verified subject matter experts
