InterviewSolution
Saved Bookmarks
| 1. |
Each level in a k-d tree is made of?(a) dimension only(b) cutting and dimension(c) color code of node(d) size of the levelI'd like to ask this question from Trees topic in section Trees of Data Structures & Algorithms II got this question by my college professor while I was bunking the class. |
|
Answer» CORRECT option is (B) CUTTING and dimension Explanation: Each level in a k-d tree is MADE of dimensions and cutting. Cutting and dimensions are used for INSERTION, deletion and searching purposes. |
|