gpt4 book ai didi

c++ - 嵌套通用容器迭代 C++

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:03:11 26 4
gpt4 key购买 nike

我正在自学使用模板,并且一直想知道是否有一种方法可以以通用方式迭代嵌套容器。我见过以这种方式遍历单个容器的示例。

这是 vector 的 vector 的函数示例。我想让它也适用于 valarrays 的 vector 和数组的数组,而不必为每个都编写一个单独的函数。提前致谢。

// matrix sum of two vectors of vectors
template<typename T>
vector<vector<T>> sum(vector<vector<T>> const &M1,
vector<vector<T>> const &M2) {
vector<vector<T>> MS(M2.size(), vector<T>(M2[0].size()));
for (unsigned int i = 0; i < MS.size(); ++i) {
for (unsigned int j = 0; j < MS[i].size(); ++j) {
MS[i][j] = M1[i][j] + M2[i][j];
}
}
}

最佳答案

我建议如下(STL 风格):

// matrix sum of two twodimensional containers
template<typename InputIterator, typename OutputIterator>
OutputIterator sum(InputIterator first1, InputIterator last1,
InputIterator first2, OutputIterator result) {
if(first1 == last1) { return result; } // Check for empty container

for (; first1 != last1; ++first1, ++first2) {
std::transform(std::begin(*first1), std::end(*first1),
std::begin(*first2), std::begin(*result),
std::add<void>{});
++result;
// Please be aware that this only works if the result container
// has already the dimensions of the input containers.
// std::back_inserter does not work with this implementation.
}
return result;
}

这种风格的算法应该适用于普通数组、 vector 、std::arrays 等...

注意:此算法未经测试。编辑:此算法适用于 c++14。

关于c++ - 嵌套通用容器迭代 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29461768/

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