About 243,000 results
Open links in new tab
  1. Sweep line algorithm - Wikipedia

    In computational geometry, a sweep line algorithm or plane sweep algorithm is an algorithmic paradigm that uses a conceptual sweep line or sweep surface to solve various problems in …

  2. Lecture 1 - Sweep Line Algorithms

    In this algorithm we sweep a line from the top to the bottom of the plane and maintain a beachfront of parabola, points equidistant for the sweep line and seen sites (input points).

  3. Line Sweep Technique Tutorials & Notes | Math | HackerEarth

    Detailed tutorial on Line Sweep Technique to improve your understanding of Math. Also try practice problems to test & improve your skill level.

  4. Mastering the Sweep Line Algorithm: From LeetCode to Real …

    May 26, 2025 · The Sweep Line algorithm is one of those hidden gems that shows up in coding interviews, but also quietly powers a variety of real-world applications — from calendar …

  5. Sweep Line Algorithm - Find if any Two Segments Intersect

    Jul 23, 2025 · The idea is to use a sweep line method that processes the endpoints of the line segments from left to right, dynamically maintaining a set of segments currently "active" as the …

  6. Line Sweep Algorithms - Topcoder

    Oct 31, 2018 · In this article I’ll explore some more advanced algorithms that can be built from these basic tools. They are all based on the simple but powerful idea of a sweep line: a vertical …

  7. Sweep Line Algorithm - CSU083 | Shoolini University

    What is the Sweep Line Algorithm? The Sweep Line Algorithm is a computational geometry technique that processes a set of geometric objects by sweeping a conceptual vertical or …

  8. Sweep Line · USACO Guide

    To find a pair of overlapping segments, use a sweep line approach by sweeping a vertical line across the scene from left to right, pausing at every segment endpoint.

  9. Sweep Line Algorithm - Compile N Run

    Think of it as scanning a document with a scanner - as the scanner's light moves across the page (our sweep line), it processes information one line at a time. This approach allows us to …

  10. Line segment intersection detection using sweep line algorithm

    Jan 5, 2023 · The sweep line algorithm, crucial in computational geometry, efficiently detects intersections in line segments. It is useful in gaming, graphics, and robotics.