What#39;s the best way to iterate over two or more containers simultaneously(同时迭代两个或多个容器的最佳方法是什么)
问题描述
C++11 提供了多种迭代容器的方法.例如:
C++11 provides multiple ways to iterate over containers. For example:
for(auto c : container) fun(c)
std::for_each
for_each(container.begin(),container.end(),fun)
但是,推荐的方法是迭代两个(或更多)相同大小的容器以完成以下操作:
However what is the recommended way to iterate over two (or more) containers of the same size to accomplish something like:
for(unsigned i = 0; i < containerA.size(); ++i) {
containerA[i] = containerB[i];
}
推荐答案
派对迟到了.但是:我会遍历索引.但不是使用经典的 for
循环,而是使用基于范围的 for
循环在索引上:
Rather late to the party. But: I would iterate over indices. But not with the classical for
loop but instead with a range-based for
loop over the indices:
for(unsigned i : indices(containerA)) {
containerA[i] = containerB[i];
}
indices
是一个简单的包装函数,它返回索引的(惰性求值)范围.由于实现(虽然简单)有点太长,无法在此处发布,您可以在 GitHub 上找到实现.
indices
is a simple wrapper function which returns a (lazily evaluated) range for the indices. Since the implementation – though simple – is a bit too long to post it here, you can find an implementation on GitHub.
此代码与使用手动的经典 for
循环一样高效.
This code is as efficient as using a manual, classical for
loop.
如果这种模式经常出现在您的数据中,请考虑使用另一种模式,该模式 zip
生成两个序列并生成一系列元组,对应于成对的元素:
If this pattern occurs often in your data, consider using another pattern which zip
s two sequences and produces a range of tuples, corresponding to the paired elements:
for (auto& [a, b] : zip(containerA, containerB)) {
a = b;
}
zip
的实现留给读者作为练习,但它很容易从 indices
的实现中得到.
The implementation of zip
is left as an exercise for the reader, but it follows easily from the implementation of indices
.
(在 C++17 之前,您必须改为编写以下代码:)
(Before C++17 you’d have to write the following instead:)
for (auto items&& : zip(containerA, containerB))
get<0>(items) = get<1>(items);
这篇关于同时迭代两个或多个容器的最佳方法是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:同时迭代两个或多个容器的最佳方法是什么
基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01