Robert Hoo

Results 1 issues of Robert Hoo

https://github.com/QMHTMY/RustBook/blob/main/code/chapter05/interpolation_search.rs 不应该用上界处是否是 target来判断查找的结果 原来的代码: ```code fn interpolation_search(nums: &[i32], target: i32) -> bool { if nums.is_empty() { return false; } let mut high = nums.len() - 1; let mut low =...