Chazelle & Edelsbrunner (Reporting all intersection points, line segments Line segment intersection): Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Time Complexity == $O( nlog n + k )$ == Space Complexity == $O(n+k)$ total? words (https://dl.acm.org/doi/10.1145/147508.147511) == Description == == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == Real RAM == Year == 1992 == Reference == https://dl.acm.org/doi/10.1145/147508.147511") |
No edit summary |
||
Line 1: | Line 1: | ||
== Time Complexity == | == Time Complexity == | ||
$O( | $O( n \log n + k )$ | ||
== Space Complexity == | == Space Complexity == |
Latest revision as of 08:33, 10 April 2023
Time Complexity
$O( n \log n + k )$
Space Complexity
$O(n+k)$ total? words
(https://dl.acm.org/doi/10.1145/147508.147511)
Description
Approximate?
Exact
Randomized?
No, deterministic
Model of Computation
Real RAM
Year
1992