2-dimensional array representation (Closest Pair Problem)
Revision as of 10:19, 15 February 2023 by Admin (talk | contribs) (Created page with "{{DISPLAYTITLE:2-dimensional array representation (Closest Pair Problem)}} == Description == Given $n$ points in 2-dimensional space in array representation, find a pair of points with the smallest distance between them. == Related Problems == Related: k-dimensional space, $l_m$ (or $l_\infty$) norm, 2-dimensional space, $l_m$ (or $l_\infty$) norm, 2-dimensional space, Euclidean metric == Parameters == No parameters found. == Table of Algorithms ==...")
Description
Given $n$ points in 2-dimensional space in array representation, find a pair of points with the smallest distance between them.
Related Problems
Related: k-dimensional space, $l_m$ (or $l_\infty$) norm, 2-dimensional space, $l_m$ (or $l_\infty$) norm, 2-dimensional space, Euclidean metric
Parameters
No parameters found.
Table of Algorithms
Name | Year | Time | Space | Approximation Factor | Model | Reference |
---|---|---|---|---|---|---|
Khuller; Matias Randomized Sieve | 1995 | $O(n)$ | $O(n)$, not sure if this is auxiliary | Exact | Randomized | Time & Space |
Dyer | 1980 | $O(n)$ using $O(n^{2})$ processors | $O(n^{2})$ | Exact | Parallel | Time & Space |