std::map<int, std::string, std::greater<int>> myMap; lower_bound 理解

发布时间:2023年12月27日
#include <iostream>
#include <map>

int main() {
    std::map<int, std::string, std::greater<int>> myMap;

    myMap.insert(std::make_pair(20, "twenty"));
    myMap.insert(std::make_pair(15, "fifteen"));
    myMap.insert(std::make_pair(10, "ten"));
    myMap.insert(std::make_pair(5, "five"));

    auto it = myMap.lower_bound(5);

    if (it != myMap.end()) {
        std::cout << "Found: " << it->second << std::endl;
    } else {
        std::cout << "Not found!" << std::endl;
    }

    return 0;
}

?std::map<int, std::string, std::greater<int>> myMap;??lower_bound : 返回第一个不大于的元素

若传入0, 输出 not found ,因为没有不大于0的值

文章来源:https://blog.csdn.net/zhuaizi888/article/details/135252946
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。