| Random Link ¯\_(ツ)_/¯ | ||
| Aug 18, 2022 | » | Binary Search
2 min; updated Jun 6, 2026
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 |
| Aug 17, 2022 | » | [ToDo] Discrete Mathematics
1 min; updated Sep 5, 2022
LogicSets and SequencesSums and ProductsGraphs
References
|
| Aug 17, 2022 | » | [ToDo] Algorithms Meta
1 min; updated Sep 5, 2022
(13 pages) defines computational problems, algorithms, programming languages, pseudo-code, and online judges.
|
In my attempt at writing
...binary_search, I had: