cga/Algorithms
hasufell 899afc7287
ALGO: fix runtime complexity in KDTree
The old code in fact increased the complexity to O(n^2), because
we applied 'elem' which is O(n) to every element of xs.

Instead we compare (in case of partitioning against Y) the y-value
of every element of xs with the y-value of the pivot which tells us
if x lies within ys.
2014-12-02 19:01:04 +01:00
..
ConvexHull Improve prettiness further 2014-11-16 04:49:13 +01:00
KDTree ALGO: fix runtime complexity in KDTree 2014-12-02 19:01:04 +01:00
PolygonIntersection ALGO: add TODO note in PolygonIntersection about Zippers 2014-11-16 04:49:34 +01:00
QuadTree ALGO: fix spelling in QuadTree 2014-11-29 05:09:13 +01:00