gpt4 book ai didi

c++ - 如何循环 multimap 以获得每个键的第一个键值对?

转载 作者:行者123 更新时间:2023-11-30 00:53:55 25 4
gpt4 key购买 nike

例如,如果我有这样的 mmap:

alice -> 30
bob -> 23
josh -> 20
josh -> 30
andy -> 40
andy -> 40

只得到这对:

alice -> 30
bob -> 23
josh -> 20
andy -> 40

最佳答案

这应该尽可能干净、有效:

for(auto it = m.begin(); it != m.end(); it = m.upper_bound(it->first)) {
std::cout << it->first << ":" << it->second << std::endl;
}

关于c++ - 如何循环 multimap 以获得每个键的第一个键值对?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15280405/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com