栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

rust二分搜索

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

rust二分搜索

如果要二分搜索某个特定值,可以用binary_search:
https://doc.rust-lang.org/stable/std/primitive.slice.html#method.binary_search

如果要实现C++里的lower_bound和upper_bound类似的功能,可以用partition_point:
https://doc.rust-lang.org/stable/std/primitive.slice.html#method.partition_point

pub fn partition_point

(&self, pred: P) -> usize where P: FnMut(&T) -> bool,

返回第一个使得pred返回false的元素的下标,与C++里的partition_point一样:
http://cplusplus.com/reference/algorithm/partition_point/?kw=partition_point

例子:

fn main() {
    let a = [1, 2, 3, 3, 4];
    // Lower bound
    println!("{}", a.partition_point(|x| *x < 3));
    // Upper bound
    println!("{}", a.partition_point(|x| *x <= 3));
}
2
4

相关链接:https://github.com/rust-lang/rfcs/issues/2184

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/298270.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号