tmp/tmpmvy2_kcr/{from.md → to.md}
RENAMED
|
@@ -31,7 +31,7 @@ or
|
|
| 31 |
``` cpp
|
| 32 |
make_pair(lower_bound(first, last, value, comp),
|
| 33 |
upper_bound(first, last, value, comp))
|
| 34 |
```
|
| 35 |
|
| 36 |
-
*Complexity:* At most 2 * log₂(last - first) + 𝑂(1) comparisons.
|
| 37 |
|
|
|
|
| 31 |
``` cpp
|
| 32 |
make_pair(lower_bound(first, last, value, comp),
|
| 33 |
upper_bound(first, last, value, comp))
|
| 34 |
```
|
| 35 |
|
| 36 |
+
*Complexity:* At most 2 * log₂(`last - first`) + 𝑂(1) comparisons.
|
| 37 |
|