GithubHelp home page GithubHelp logo

clj-kdtree's Introduction

clj-kdtree

Overview

A Kd-tree is a special type of binary tree that partitions points in a k-dimensional space. It can be used for efficient nearest-neighbor searches.

For more detail, refer to Wikipedia on Kd-trees.

Usage

(require 'kdtree)

(def points [[8 8] [3 1] [6 6] [7 7] [1 3] [4 4] [5 5]])
;; Build a kdtree from a set of points
(def tree (kdtree/build-tree points))
(println "Tree:" tree)

;; Use tree to find neighbors for one point given a set of points.
(println "\n\nFour points closest to [2 2]:\n"
         (kdtree/nearest-neighbor tree [2 2] 4))

;; Same operation, but delete two of the closest points.
(println "\n\nFour points with deletion:\n"
         (kdtree/nearest-neighbor
          (kdtree/delete
           (kdtree/delete tree [1 3])
           [3 1])
          [2 2] 4))

;; Same operation, but adding a close point.
(println "\n\nFour points with insertion:\n"
         (kdtree/nearest-neighbor
          (kdtree/insert tree [1.5 1.5])
          [2 2] 4))

License

Copyright (C) 2009-2012 Brendan Ribera. All rights reserved.

Distributed under the MIT License; see the file LICENSE at the root of this distribution.

clj-kdtree's People

Contributors

abscondment avatar

Watchers

Kyle I S Harrington avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.