gpt4 book ai didi

c++ - 如何跳过基于范围的 for 循环中基于 'index' 的元素?

转载 作者:可可西里 更新时间:2023-11-01 14:52:54 24 4
gpt4 key购买 nike

有没有办法在 C++11 基于范围的 for 循环中访问迭代器(我想没有循环索引?)?

我们经常需要对容器的第一个元素做一些特殊的事情,然后遍历其余元素。所以我在这个伪代码中寻找类似 c++11_get_index_of 语句的内容:

for (auto& elem: container) 
{
if (c++11_get_index_of(elem) == 0)
continue;

// do something with remaining elements
}

我真的很想避免回到 old-style manual iterator handling该场景中的代码。

最佳答案

Often we need to do something special with the first element of a container and iterate over the remaining elements.

我很惊讶到目前为止还没有人提出这个解决方案:

  auto it = std::begin(container);

// do your special stuff here with the first element

++it;

for (auto end=std::end(container); it!=end; ++it) {

// Note that there is no branch inside the loop!

// iterate over the rest of the container
}

它有一个很大的优势,就是分支被移出循环。它使循环变得更简单,也许编译器也可以更好地优化它。

如果您坚持使用基于范围的 for 循环,也许最简单的方法是这样做(还有其他更丑陋的方法):

std::size_t index = 0;

for (auto& elem : container) {

// skip the first element
if (index++ == 0) {
continue;
}

// iterate over the rest of the container
}

但是,如果您只需要跳过第一个元素,我会认真地将分支移出循环。

关于c++ - 如何跳过基于范围的 for 循环中基于 'index' 的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21215947/

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