InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Search And Search All? What Is More Efficient? |
|
Answer» SEARCH is a SEQUENTIAL search from the beginning of the table. SEARCH ALL is a binary search, continually dividing the table in TWO halves until a match is found. SEARCH ALL is more efficient for tables larger than 70 items. SEARCH is a sequential search from the beginning of the table. SEARCH ALL is a binary search, continually dividing the table in two halves until a match is found. SEARCH ALL is more efficient for tables larger than 70 items. |
|