VOOZH about

URL: https://www.geeksforgeeks.org/dsa/search-and-insertion-in-k-dimensional-tree/

⇱ Search and Insertion in K Dimensional tree - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Search and Insertion in K Dimensional tree

Last Updated : 23 Jul, 2025

What is K dimension tree?

A K-D Tree(also called as K-Dimensional Tree) is a binary search tree where data in each node is a K-Dimensional point in space. In short, it is a space partitioning(details below) data structure for organizing points in a K-Dimensional space. A non-leaf node in K-D tree divides the space into two parts, called as half-spaces. Points to the left of this space are represented by the left subtree of that node and points to the right of the space are represented by the right subtree. We will soon be explaining the concept on how the space is divided and tree is formed. For the sake of simplicity, let us understand a 2-D Tree with an example. The root would have an x-aligned plane, the root's children would both have y-aligned planes, the root's grandchildren would all have x-aligned planes, and the root's great-grandchildren would all have y-aligned planes and so on.
 

 Generalization: Let us number the planes as 0, 1, 2, …(K – 1). From the above example, it is quite clear that a point (node) at depth D will have A aligned plane where A is calculated as: A = D mod K

 How to determine if a point will lie in the left subtree or in right subtree? If the root node is aligned in planeA, then the left subtree will contain all points whose coordinates in that plane are smaller than that of root node. Similarly, the right subtree will contain all points whose coordinates in that plane are greater-equal to that of root node.

 Creation of a 2-D Tree: Consider following points in a 2-D plane: (3, 6), (17, 15), (13, 15), (6, 12), (9, 1), (2, 7), (10, 19)

  1. Insert (3, 6): Since tree is empty, make it the root node.
  2. Insert (17, 15): Compare it with root node point. Since root node is X-aligned, the X-coordinate value will be compared to determine if it lies in the right subtree or in the left subtree. This point will be Y-aligned.
  3. Insert (13, 15): X-value of this point is greater than X-value of point in root node. So, this will lie in the right subtree of (3, 6). Again Compare Y-value of this point with the Y-value of point (17, 15) (Why?). Since, they are equal, this point will lie in the right subtree of (17, 15). This point will be X-aligned.
  4. Insert (6, 12): X-value of this point is greater than X-value of point in root node. So, this will lie in the right subtree of (3, 6). Again Compare Y-value of this point with the Y-value of point (17, 15) (Why?). Since, 12 < 15, this point will lie in the left subtree of (17, 15). This point will be X-aligned.
  5. Insert (9, 1):Similarly, this point will lie in the right of (6, 12).
  6. Insert (2, 7):Similarly, this point will lie in the left of (3, 6).
  7. Insert (10, 19): Similarly, this point will lie in the left of (13, 15).

👁 ktree_1
 

How is space partitioned? 

All 7 points will be plotted in the X-Y plane as follows:

  1. Point (3, 6) will divide the space into two parts: Draw line X = 3. 👁 Image
  2. Point (2, 7) will divide the space to the left of line X = 3 into two parts horizontally. Draw line Y = 7 to the left of line X = 3. 👁 Image
  3. Point (17, 15) will divide the space to the right of line X = 3 into two parts horizontally. Draw line Y = 15 to the right of line X = 3.
     👁 Image
  4. Point (6, 12) will divide the space below line Y = 15 and to the right of line X = 3 into two parts. Draw line X = 6 to the right of line X = 3 and below line Y = 15.
     👁 Image
  5. Point (13, 15) will divide the space below line Y = 15 and to the right of line X = 6 into two parts. Draw line X = 13 to the right of line X = 6 and below line Y = 15.
     👁 Image
  6. Point (9, 1) will divide the space between lines X = 3, X = 6 and Y = 15 into two parts. Draw line Y = 1 between lines X = 3 and X = 13.
     👁 Image
  7. Point (10, 19) will divide the space to the right of line X = 3 and above line Y = 15 into two parts. Draw line Y = 19 to the right of line X = 3 and above line Y = 15.
     👁 Image

Following is C++ implementation of KD Tree basic operations like search, insert and delete. 

Output:

Found
Not Found
 

Time Complexity: O(n)
Auxiliary Space: O(n)

Refer below articles for find minimum and delete operations.

Advantages of K Dimension tree -

K-d trees have several advantages as a data structure:

  • Efficient search: K-d trees are effective in searching for points in a k-dimensional space, such as in nearest neighbor search or range search.
  • Dimensionality reduction: K-d trees can be used to reduce the dimensionality of the problem, allowing for faster search times and reducing the memory requirements of the data structure.
  • Versatility: K-d trees can be used for a wide range of applications, such as in data mining, computer graphics, and scientific computing.
  • Balance: K-d trees are self-balancing, which ensures that the tree remains efficient even when data is inserted or removed.
  • Incremental construction: K-d trees can be incrementally constructed, which means that data can be added or removed from the structure without having to rebuild the entire tree.
  • Easy to implement: K-d trees are relatively easy to implement and can be implemented in a variety of programming languages.

This article is compiled by Aashish Barnwal.

Comment
Article Tags: