0
votes
2answers
39 views

KD Tree alternative/variant for weighted data

I'm using a static KD-Tree for nearest neighbor search in 3D space. However, the client's specifications have now changed so that I'll need a weighted nearest neighbor search instead. For example, ...
1
vote
2answers
133 views

Nearest vertex search

I'm looking for effective algorithm to find a vertex nearest to point P(x, y, z). The set of vertices is fixed, each request comes with new point P. I tried kd-tree and others known methods and I've ...
0
votes
0answers
44 views

k-d tree implementation tradeoffs [duplicate]

Possible Duplicate: Kd tree: data stored only in leaves vs stored in leaves and nodes There are two alternative ways of implementing a k-d tree: having every node reference a point or ...
1
vote
1answer
218 views

Using Google's C KD Tree Library

Google has a KD Tree Library written in C: Here As far as I can tell, you insert notes into the tree using one of it's functions, and then query the tree for nearest neighbors. It returns a pointer ...
2
votes
1answer
128 views

What datastructure to use for a rapidly changing nearest neighbor search?

I want to store from 50 to 10 000 vectors in 3 to 20 dimensions. I want to know in which structure to store the vectors in order to be able to solve the nearest neighbor or approximate nearest ...
0
votes
1answer
123 views

Find 10 closest matches of a 30 dimensional vector, what data structure?

I got a vector with 30 dimensions and I want to find the 10 closest matches in my database. I have around 3000 vectors in my DB which I’ve to compare it to. Some dimensions are more important than ...
1
vote
1answer
156 views

How could I make this KD-tree?

I have a very long, semi-sorted list of latitude, longitude, and time zone triplets. I want to be able to search this list quickly to find the closest time zone to any given latitude and longitude, so ...
2
votes
2answers
417 views

Simple k-nearest-neighbor algorithm for euclidean data with variable density?

An elaboration on this question, but with more constraints. The idea is the same, to find a simple, fast algorithm for k-nearest-neighbors in 2 euclidean dimensions. The bucketing grid seems to work ...
1
vote
2answers
2k views

KD Tree - Nearest Neighbor Algorithm

I'm not quite understanding the O(log n) nearest neighbor algorithm from wikipedia. … … The algorithm unwinds the recursion of the tree, performing the following steps at each node: ...
6
votes
2answers
527 views

2D nearest neighbour search for moving points

I want do do some flocking simulation, as described here. For this I need to search for the nearest neighbours of each of my 2D points. However, I cannot use a static data structure like a k-d tree ...
1
vote
3answers
327 views

Asymmetric nearest-neighbour in Java

From a sorted map, I want to retrieve a subset of n entries, starting m entries before a specified value v. For example, for the key set k = {0.2, 0.3, 0.4, 0.6, 0.8, 0.9, 1.0}, a query with n=5, m=2, ...
2
votes
0answers
351 views

All-KNN (All-K-Nearest-Neighbors) in Cover Trees

I think I know how to do K-Nearest-Neighbors using Cover Trees. (Incidentally: can anybody point me to a run-time complexity analysis of this?), BUT I am looking for all-kNN (that is: find the kNN of ...
2
votes
2answers
322 views

Finding nearest point's in space time to interpolate data

I have a set of data in the following format: Date/time | Latitude | Longitude | Height | Temp These data can be entered by the user based on atmospheric temperature measurements at different ...
1
vote
2answers
359 views

Are KD trees still efficient when most/all of the attributes are discrete and distance is equivalent?

It's always touted that KD trees are great for nearest neighbor searches. However, if your data set is all discrete values, with no real distance metric, are they still efficient? For example, if ...
4
votes
1answer
146 views

Is there a disk based nearest neighbour data structure?

I have a dataset for which I need to find the K nearest neighbours, or all the neighbours within a distance d. The dataset has a custom distance defined but it is not an Euclidean distance. I have ...
3
votes
2answers
571 views

Data structure for fast line queries?

I know that I can use a KD-Tree to store points and iterate quickly over a fraction of them that are close to another given point. I'm wondering whether there is something similar for lines. Given a ...