Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Multiple line segment intersection

In computational geometry, the multiple line segment intersection problem supplies a list of line segments in the Euclidean plane and asks whether any two of them intersect (cross).

Simple algorithms examine each pair of segments. However, if a large number of possibly intersecting segments are to be checked, this becomes increasingly inefficient since most pairs of segments are not close to one another in a typical input sequence. The most common, and more efficient, way to solve this problem for a high number of segments is to use a sweep line algorithm, where we imagine a line sliding across the line segments and we track which line segments it intersects at each point in time using a dynamic data structure based on binary search trees. The Shamos–Hoey algorithm applies this principle to solve the line segment intersection detection problem, as stated above, of determining whether or not a set of line segments has an intersection; the Bentley–Ottmann algorithm works by the same principle to list all intersections in logarithmic time per intersection.

We don't have any images related to Multiple line segment intersection yet.
We don't have any YouTube videos related to Multiple line segment intersection yet.
We don't have any PDF documents related to Multiple line segment intersection yet.
We don't have any Books related to Multiple line segment intersection yet.
We don't have any archived web articles related to Multiple line segment intersection yet.

See also

Further reading

References

  1. Shamos, M. I.; Hoey, D. (1976). "17th Annual Symposium on Foundations of Computer Science (sfcs 1976)" (PDF): 208. doi:10.1109/SFCS.1976.16. S2CID 124804. {{cite journal}}: Cite journal requires |journal= (help) Chapter: "Geometric intersection problems" http://euro.ecom.cmu.edu/people/faculty/mshamos/1976GeometricIntersection.pdf