gpt4 book ai didi

c++ - 我将如何使用 vector.begin() 和 vector.end() 遍历矩阵?

转载 作者:行者123 更新时间:2023-11-28 01:30:05 29 4
gpt4 key购买 nike

我知道这不切实际,我总是可以使用 .size() 或 auto& col: 矩阵,但是如何使用以下方法遍历矩阵:

   for (std::vector<vector<int>>::iterator col = matrix.begin(); col != matrix.end(); ++col){
for (std::vector<int>::iterator row = matrix[col].begin(); row != matrix[col].end(); row++){
std::cout << matrix[col][row] << std::endl;
}
}

我认为这是一个糟糕的主意,但想找到一些方法来处理二维 vector 。但是,如果您能解决这个问题,那就太好了。

最佳答案

你可以这样做:

std::vector<std::vector<int>> matrix;

for (auto col = matrix.begin(); col != matrix.end(); ++col)
for (auto el = col->begin(); el != col->end(); ++el)
std::cout << *el << std::endl;

关于c++ - 我将如何使用 vector.begin() 和 vector.end() 遍历矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51885349/

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