Skip to content

Commit f72135f

Browse files
borsgitbot
authored and
gitbot
committed
Auto merge of rust-lang#85406 - VillSnow:integrate_binary_search, r=JohnTitor
Integrate binary search codes of binary_search_by and partition_point For now partition_point has own binary search code piece. It is because binary_search_by had called the comparer more times and the author (=me) wanted to avoid it. However, now binary_search_by uses the comparer minimum times. (rust-lang#74024) So it's time to integrate them. The appearance of the codes are a bit different but both use completely same logic.
2 parents 0c7af26 + 5d80f28 commit f72135f

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

core/src/slice/mod.rs

+1-21
Original file line numberDiff line numberDiff line change
@@ -3468,27 +3468,7 @@ impl<T> [T] {
34683468
where
34693469
P: FnMut(&T) -> bool,
34703470
{
3471-
let mut left = 0;
3472-
let mut right = self.len();
3473-
3474-
while left != right {
3475-
let mid = left + (right - left) / 2;
3476-
// SAFETY: When `left < right`, `left <= mid < right`.
3477-
// Therefore `left` always increases and `right` always decreases,
3478-
// and either of them is selected. In both cases `left <= right` is
3479-
// satisfied. Therefore if `left < right` in a step, `left <= right`
3480-
// is satisfied in the next step. Therefore as long as `left != right`,
3481-
// `0 <= left < right <= len` is satisfied and if this case
3482-
// `0 <= mid < len` is satisfied too.
3483-
let value = unsafe { self.get_unchecked(mid) };
3484-
if pred(value) {
3485-
left = mid + 1;
3486-
} else {
3487-
right = mid;
3488-
}
3489-
}
3490-
3491-
left
3471+
self.binary_search_by(|x| if pred(x) { Less } else { Greater }).unwrap_or_else(|i| i)
34923472
}
34933473
}
34943474

0 commit comments

Comments
 (0)