我试图以与初始化相同的方式打印出二维向量的内容。
#include <iostream>
#include <vector>
using namespace std;
int main(){
vector<vector<int > > frontier = {{-1,0}, {1,0}, {0,-1}, {0,1}};
for (int i = 0; i < frontier.size(); i++) {
for (int j = 0; j < frontier[i].size(); j++) {
std::cout << frontier[i][j] << ", ";
}
}
cout << "End of frontier. " << endl;
/* This below is an implementation that I found online but found
no
* way to be able to implement the column reference.
*/
for (int i = 0; i < frontier.size(); ++i) {
for (int j = 0; j < col; ++j) {
cout << frontier[i + j * col] << ' ';
}
cout << endl;
}
}
这是为了确定二维向量的内容。到目前为止,这段代码可以打印出用逗号分隔的每个索引。另一方面,我需要编写代码来表示新向量的开始位置。
输出:
-1, 0, 1, 0, 0, -1, 0, 1,
预期输出:
{{-1,0}, {1,0}, {0,-1}, {0,1}}