在编程中经常使用二维向量组成的数组,有时候就需要遍历输出,想了下面的方式,可以得到遍历结果
#include<stdio.h>
#include<vector>
#include<string>
#include <iostream>
using namespace std;
vector<string> temp_vect;
// vect是vector<vector<string>>类型的值
for (vector<vector<string>>::iterator ite = vect.begin(); ite != vect.end(); ite++)
{
temp_vect = *ite;
for (vector<string>::iterator itee = temp_vect.begin(); itee != temp_vect.end(); itee++)
cout << *itee << endl;
}
参考链接:https://blog.csdn.net/pingxu1987/article/details/18665631
标签:遍历,temp,ite,vect,vector,include,向量 From: https://www.cnblogs.com/365djl/p/16921695.html