| Random Link ¯\_(ツ)_/¯ | ||
| Aug 18, 2022 | » | Binary Search
2 min; updated Sep 5, 2022
Binary Search on a Non-Decreasing \(f: \mathbb{R} \to \mathbb{R}\)Given a number \(L\) and a non-decreasing function \(f: \mathbb{R} \to \mathbb{R}\), find the greatest \(x\) such that \(f(x) \le L\). To start, there are two numbers \(lo\) and \(hi\), such that \(f(lo) \le L < f(hi)\). Algorithm |
In my attempt at writing
...binary_search, I had: