InterviewSolution
Saved Bookmarks
| 1. |
Efficiency of bin depends upon ___________(a) size of query and candidates(b) location of query and candidates(c) location and size of query and candidates(d) depends on the inputThe doubt is from Trees in chapter Trees of Data Structures & Algorithms IThe question was posed to me in homework. |
|
Answer» RIGHT option is (c) location and SIZE of query and candidates Explanation: Efficiency of BIN DEPENDS upon the location and size of query and candidates. It is SIMILAR to that of a hash table. |
|