Similar points collide into the same bucket — banding tunes the recall / precision S-curve — a query finds candidates without scanning everything
| Operation | Cost | Note |
|---|---|---|
| Brute-force NN | O(N·d) | scan everything |
| Build signature | O(b·r·d) | b·r dot products |
| Insert (b tables) | O(b·r·d) | hash into bands |
| Query (typical) | O(N^ρ + cand·d) | sublinear, ρ<1 |
| Space | O(N^(1+ρ)) | L tables |