【C++】不要想当然使用resize

#include <iostream>     // std::cout
#include <vector> // std::vector
using namespace std; int main () { vector<vector<int> > theta;
theta.resize(, vector<int>(, ));
theta.resize(, vector<int>(, ));
for(int i = ; i < theta.size(); i ++)
{
for(int j = ; j < theta[i].size(); j ++)
cout << theta[i][j] << " ";
cout << endl;
}
return ;
}

本来目的是让第二次resize覆盖掉第一次的resize,得到2行3列的2

真实结果是:

【C++】不要想当然使用resize

上一篇:剑指offer--45.二叉树的深度


下一篇:工作需求——JQ小效果分享下