Welzl's randomized incremental algorithm — the circle adjusts as boundary points are found
| Approach | Time | Space |
|---|---|---|
| Inside test | O(1) | O(1) |
| Circle from 2 pts | O(1) | O(1) |
| Circumcircle (3 pts) | O(1) | O(1) |
| Welzl (this anim) | exp. O(n) | O(n) |
| Brute force | O(n³)–O(n⁴) | O(1) |
| Megiddo (det.) | O(n) | O(n) |