1/30
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
O(n log n)
- "Same as sorting." (Graham Scan, Divide-and-Conquer)
O(n)
- "Melkman's Algorithm" (Uses the "simple order" to avoid sorting).
O(n)
- "Chazelle's Algorithm" (Treat as a black-box fact).
O(n log n)
- "Plane Sweep" (Decomposes into monotone mountains).
O(n)
- "Simple Ear Clipping" (No need to search for ears).
O(n²)
- "Repeatedly scanning for ears" (`n` ears to find, `O(n)` scan for each).
O(nh)
- "Output-Sensitive" (`h` steps, `O(n)` work per step).
O(nh) or O(n²)
- "Output-Sensitive, but can be bad" (like Quicksort).
O(n)
- "Single pass" (One `Left` test per vertex).
O(n)
- "Linear time 4-approximation" (Starts with an O(n) triangulation).
O(n)
- "Run Gift-Wrapping for a constant number of steps".
O(n log h)
- "The best possible bound" (Know it exist