In my program, I have a vector of vector of ints. Now I want to take one vector from the vector of vectors and have it manipulated in another vector container, but I get the error...
|error: conversion from '__gnu_cxx::__normal_iterator<int*, std::vector<int, std::allocator<int> > >' to non-scalar type 'std::vector<int, std::allocator<int> >' requested|
An example of what I am trying to do is as follows....
#include <vector>
using namespace std;
vector<vector<int> > k (13,5);
void some_funct() {
vector<int> new_v (k[2].begin(), k[2].end()); //This line is what throws the error
//here I do some stuff with new_v (e.g. sort it)
}
I'm not sure what I am doing wrong. I tried a couple of things like assigning the begin() and end() iterators to const iterator types... vector<int>::const_iterator it = k[2].begin(); but that didn't work either.
This should work (because k[x] would be a vector) but I don't know what is going wrong. Any help is appreciated!
EDIT:
After revision of my code, I noticed that there actually was an error. Instead of doing vector<int> new_v (k[2].begin(),k[2].end()); I did vector<int> new_v = (k[2].begin(),k[2].end());.
I would like to thank Rob for giving me the initiative to copy and paste my code into SO, where I noticed my mistake.
Thank you for your help!
std::vector<std::vector<int>> k(13, std::vector<int>(5));? – Kerrek SB Nov 27 '11 at 3:30std::vector<int> new_v(k[2]);should work just as well. – Kerrek SB Nov 27 '11 at 3:32