InterviewSolution
Saved Bookmarks
| 1. |
What will be the time complexity of query operation if all the candidates are evenly spaced so that each bin has constant no. of candidates? (k = number of bins query rectangle intersects)(a) O(1)(b) O(k)(c) O(k^2)(d) O(log k)Query is from Trees topic in section Trees of Data Structures & Algorithms IThis question was posed to me in examination. |
|
Answer» RIGHT answer is (B) O(k) The best I can EXPLAIN: The process of query becomes faster in a case when the number of candidates are equally DISTRIBUTED among the bins. In such a case the query operation becomes O(k). |
|