Re: Convex Hull of Points on a Straight Line
- From: "eKo1" <berndlosert@xxxxxxxxxxxx>
- Date: 9 Oct 2006 01:08:31 -0700
Babua wrote:
If we take two points (x1,y1) and (x2,y2) then by a convex
combination of these two points we mean any point of the
following form:
[kx1+(1-k)x2, ky1+(1-k)y2] for 0<=k<=1
OK.
This is a degenerate 2D problem. If you consider it as a 1D problem
then any convex hull will be a line segment. Any convex combination
of any two points within that segment also belongs to that segment.
So the 1D problem can be solved in O(n) time unlike the 2D problem
that is lower bounded by \omega(nlogn).
How does the "So the 1D problem can be solved in O(n) time" follow from
your convex combination statement? I don't get it.
In this context I would just like to add a point that in
the lower bound proof where sorting is reduced to convex
hull problem to avoid the problem of colineraity the data
x for sorting is mapped to the point (x,x^2) on a parabola
and not to (x,x) on a line for the 2D convex hull problem.
Interesting. In the lower-bound proof for computing the convex hull,
the points are mapped on one of the 90 degree arcs of a circle.
.
- References:
- Convex Hull of Points on a Straight Line
- From: eKo1
- Re: Convex Hull of Points on a Straight Line
- From: Babua
- Re: Convex Hull of Points on a Straight Line
- From: eKo1
- Re: Convex Hull of Points on a Straight Line
- From: Babua
- Convex Hull of Points on a Straight Line
- Prev by Date: Re: Convex Hull of Points on a Straight Line
- Next by Date: Re: Convex Hull of Points on a Straight Line
- Previous by thread: Re: Convex Hull of Points on a Straight Line
- Next by thread: Re: Convex Hull of Points on a Straight Line
- Index(es):
Relevant Pages
|