I have a function that gathers and concatenates some number of vectors (with the same types of elements, of course). Here is the bare-bones idea of it:
vector<A> combined;
...
for(int i = 0; i < someNumber; i++)
combined.insert(combined.end(), GetNextRange().begin(), GetNextRange().end());
All of this is done so that I can sequentially iterate over the combined set. I would like to achieve this without all of the copying business.
Since GetNextRange() actually returns a reference to the next vector in line, how can I make use of that fact and put the references together/line them up for the desired access method?
First off, if
GetNextRange()
actually, indeed does return the next vector, your use ofGetNextRange()
twice to get thebegin()
and theend()
won't do you much good. At the very least you'd need to do something along the lines ofIf you want to make this somewhat nice you can create a custom iterator which internally stores the current vector, the index, and a current position. It will probably be an input iterator actually storing the current information in a suitable shared record so it can be copied.
Here is a simple (and untested) implementation: