Search

Search IconIcon to open search

k-d Tree

Last updatedUpdated: by Jakub Žovák · 1 min read

Properties
created 29.10.2024, 14:08
modified 09.08.2025, 11:27
published Empty
sources Empty
topics k-d Tree, Tree-based Indexes, Spatial Indexing
authors Empty
ai-assisted No
  • Partitioning: Uses axis-aligned hyperplanes, splitting each dimension alternately.
  • Space Coverage: Yes, partitions cover the entire space even if data is sparse.
  • Region Overlap: No, partitions are non-overlapping with clear rectangular boundaries.
  • Complexity: O(log n) for balanced trees; performance degrades with high dimensions.
  • Query Type: Optimized for nearest neighbor searches in low-dimensional data.
  • Use Case: Common in computer graphics (ray tracing, collision detection) and search algorithms for static datasets.