Bowyer–Watson algorithm (Voronoi Diagrams Voronoi Diagrams): Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Time Complexity == $O(nlogn)$ == Space Complexity == $O(n)$ auxiliary words (Computes the Delaunay triangulation first (O(n) space), then uses that to generate the Voronoi diagram) == Description == == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == Word/Real RAM == Year == 1981 == Reference == https://academic-oup-com.ezproxy.canberra.edu.au/comjnl/article/24/2/167/338200") |
No edit summary |
||
Line 1: | Line 1: | ||
== Time Complexity == | == Time Complexity == | ||
$O( | $O(n \log n)$ | ||
== Space Complexity == | == Space Complexity == | ||
$O(n)$ | $O(n)$ words | ||
(Computes the Delaunay triangulation first (O(n) space), then uses that to generate the Voronoi diagram) | (Computes the Delaunay triangulation first (O(n) space), then uses that to generate the Voronoi diagram) |
Latest revision as of 08:42, 10 April 2023
Time Complexity
$O(n \log n)$
Space Complexity
$O(n)$ words
(Computes the Delaunay triangulation first (O(n) space), then uses that to generate the Voronoi diagram)
Description
Approximate?
Exact
Randomized?
No, deterministic
Model of Computation
Word/Real RAM
Year
1981
Reference
https://academic-oup-com.ezproxy.canberra.edu.au/comjnl/article/24/2/167/338200