Chapter 9: Problem 4
The _________ search algorithm requires that the array's contents be sorted.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Chapter 9: Problem 4
The _________ search algorithm requires that the array's contents be sorted.
These are the key concepts you need to understand to accurately answer the question.
All the tools & learning materials you need for study success - in one app.
Get started for freeTo sort \(\mathrm{N}\) numbers, selection sort makes __________ passes through the data.
The____________ search algorithm repeatedly divides the portion of an array being searched in half.
Assume an array of structures is in order by the customerID ficld of the record, where customer IDs go from 101 to 500 . A) Write the most efficient pseudocode algorithm you can to find the record with a specific customerlD if every single customer ID from 101 to 500 is used and the array has 400 elements. B) Write the most efficient pscudocode algorithm you can to find a record with a customer ID near the end of the IDs, say 494 , if not every single customer 10 in the range of 101 to 500 is used and the array size is only 300 .
A binary search will find the value it is looking for with just one comparison if that value is stored in the ____________ array element.
Complete the following table by calculating the average and maximum number of comparisons the linear search will perform, and the maximum number of comparisons the binary search will perform. $$\begin{array}{l|lllll} & 50 & 500 & 10,000 & 100,000 & 10,000,000 \\ \text { Array Size } \rightarrow & \text { Elements } & \text { Elements } & \text { Elements } & \text { Elements } & \text { Elements } \\ \hline \begin{array}{l} \text { Linear Search } \\ \text { (Average Comparisons) } \end{array} & & & & & \\ \hline \begin{array}{l} \text { Linear Search } \\ ( \text { Maximum Comparisons) } \end{array} & & & & & \\ \hline \begin{array}{l} \text { Binary Search } \\ ( \text { Maximum Comparisons) } \end{array} & & & & & \\ \hline \end{array}$$
What do you think about this solution?
We value your feedback to improve our textbook solutions.