SkillAgentSearch skills...

KdTree

A fast, generic, multi-dimensional Binary Search Tree written in C#

Install / Use

/learn @codeandcats/KdTree
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

KdTree

A fast, generic, and multi-dimensional Binary Search Tree written in C#.

Install

Install via NuGet Package Manager Console:

PM> Install-Package KdTree

Examples

Find nearest point in two dimensions

var tree = new KdTree<float, int>(2, new FloatMath());
tree.Add(new[] { 50.0f, 80.0f }, 100);
tree.Add(new[] { 20.0f, 10.0f }, 200);

var nodes = tree.GetNearestNeighbours(new[] { 30.0f, 20.0f }, 1);
View on GitHub
GitHub Stars261
CategoryDevelopment
Updated2mo ago
Forks84

Languages

C#

Security Score

95/100

Audited on Jan 9, 2026

No findings