forked from TheAlgorithms/Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary_search.rs
49 lines (38 loc) · 1.21 KB
/
binary_search.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use std::cmp::{PartialEq, PartialOrd};
pub fn binary_search<T: PartialEq + PartialOrd>(item: &T, arr: &[T]) -> Option<usize> {
let mut left = 0;
let mut right = arr.len() - 1;
while left < right {
let mid = left + (right - left) / 2;
if &arr[mid] > item {
right = mid - 1;
} else if &arr[mid] < item {
left = mid + 1;
} else {
left = mid;
break;
}
}
if &arr[left] != item {
return None;
}
return Some(left);
}
#[cfg(test)]
mod tests {
#[test]
fn binary() {
let index = super::binary_search(&"a", &vec!["a", "b", "c", "d", "google", "zoo"]);
assert_eq!(index, Some(0));
let index = super::binary_search(&4, &vec![1, 2, 3, 4]);
assert_eq!(index, Some(3));
let index = super::binary_search(&3, &vec![1, 2, 3, 4]);
assert_eq!(index, Some(2));
let index = super::binary_search(&2, &vec![1, 2, 3, 4]);
assert_eq!(index, Some(1));
let index = super::binary_search(&1, &vec![1, 2, 3, 4]);
assert_eq!(index, Some(0));
let index = super::binary_search(&5, &vec![1, 2, 3, 4]);
assert_eq!(index, None);
}
}