gpt4 book ai didi

c++ - 将多映射迭代器转换为随机访问迭代器

转载 作者:行者123 更新时间:2023-11-28 00:05:17 24 4
gpt4 key购买 nike

我搜索了其他问题,但它们似乎对我没有帮助。我需要使用迭代器遍历多重映射,但我不想遍历多重映射的每个元素,我想将迭代器增加 n。所以基本上是这样的:

for(typename multimap<string, int>::iterator it = words.begin(); it != words.end(); it = it + words.count(it->first))
{
...
}

在这种情况下,我想将迭代器增加 words.count(it->first)(这并不重要,它只是一个数字)。我知道我需要一个随机访问迭代器,但我不知道如何声明它。

最佳答案

A std::multimap有一个BidirectionalIterator并且您不能将其更改为 RandomAccessIterator .你可以做的一件事是使用 std::advance从多重映射中增加迭代器正确的数量。这是一个线性操作,但它给出了相同的语义

for(typename multimap<string, int>::iterator it = words.begin(); it != words.end(); std::advance(it, words.count(it->first)))

关于c++ - 将多映射迭代器转换为随机访问迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36068841/

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