diff --git a/content/posts/2024-08-17-kd-tree-revisited/index.md b/content/posts/2024-08-17-kd-tree-revisited/index.md new file mode 100644 index 0000000..137e2fd --- /dev/null +++ b/content/posts/2024-08-17-kd-tree-revisited/index.md @@ -0,0 +1,22 @@ +--- +title: "Kd Tree Revisited" +date: 2024-08-17T14:20:22+01:00 +draft: false # I don't care for draft mode, git has branches for that +description: "Simplifying the nearest neighbour search" +tags: + - algorithms + - data structures + - python +categories: + - programming +series: + - Cool algorithms +favorite: false +disable_feed: false +--- + +After giving it a bit of thought, I've found a way to simplify the nearest +neighbour search (i.e: the `closest` method) for the `KdTree` I implemented in +[my previous post]({{< relref "../2024-08-10-kd-tree/index.md" >}}). + +