|
vector <vector <int>> ivec;
-------------------------------------------------- -----------------------------------
Here you define an empty vector, which cannot be initialized with iterator, you should use push_back operation to add elements.
Alternatively, instead of defining an empty vector, you can give an initial size. |
|