vote up 0 vote down star

I'm just trying to get more into stl semantics, and converting old loops over to algorithms where appropriate. I'm having trouble figuring out the best way to transform this loop into a call to copy. Any ideas?

    vector< vector<float> > rvec;
    const float * r[Max] = ...;

    // ...

    for (int ri=0; ri<N; ri++)
      for (int rj=0; rj<M; rj++)
        rvec[ri][rj] = r[ri][rj];
flag

75% accept rate

4 Answers

vote up 6 vote down check
rvec.resize(Max);
for (int i = 0; i < Max; ++i) {
  rvec[i].resize(M);
  std::copy(r[i], r[i] + M, rvec[i].begin());
}

If rvec itself and each vector in rvec already has the correct size, then resizing isn't needed.

link|flag
using vector iterators would make this faster – Partial Jul 4 at 12:41
^^^^ that is not necessarily true. – ttvd Nov 15 at 22:33
vote up 2 vote down

Not sure you can do this with only the standard algorithms and no functors (and with those, the code is bound to grow significantly than above).

You know, sometimes a plain loop is just best. STL's algorithms are very nice, but since C++ doesn't have anonymous functions or built in lambdas (yet), taking perfectly readable code such as you show above and converting it to STL algorithms is more of an intellectual exercise than actual improvement,

link|flag
Agreed. Tossing iterators all over the place just to use STL's copy() isn't worth bloating the code you already have that does the job just as well. – Jeff L Jul 2 at 17:29
1  
anonymous Lambda's are part of the c++0x standard, much of which is already supported by current compilers. It may be worth trying to see if one works. – TokenMacGuy Jul 2 at 17:36
+1. For most code, readability (== maintainability) trumps other concerns. OK, If you find yourself doing a lot of this, consider creating your own 2D (or n-D) copy<T>() function template. – j_random_hacker Jul 3 at 5:07
I disagree... the STL libraries are really optimized and using iterators also makes the code better in terms of performance. What you guys are saying here is almost like saying that you prefer coding crappy code over clever and well thought code. – Partial Jul 4 at 1:53
2  
@Partial: I would agree, except that (a) he's talking about taking a bunch of working code and changing it, which carries a risk of introducing bugs, and (b) without lambdas the new code is undeniably less readable. Performance-wise, both will almost certainly be the same -- the only way a copy<>() call could be faster is if the library implementation somehow spreads the work across multiple CPUs, and to my knowledge no current library implementations do that. However that may become a compelling reason to prefer copy<>() in the future. – j_random_hacker Jul 5 at 7:17
show 3 more comments
vote up 1 vote down

In this case just leaving the code as is isn't so bad. Though if you wrote it multiple times abstracting it into a separate function would be a good idea. Another point to consider, any solution that doesn't reserve or resize will waste time copying where you don't need to.

link|flag
+1. Good point about reserve()/resize() -- this will make a noticeable performance difference if used on large arrays or in tight loops. (I.e. it's probably not premature optimisation to consider doing these things.) – j_random_hacker Jul 3 at 5:09
vote up 0 vote down

Here is an example I made a bit rapidly with iterators...

#include <algorithm>
using std::copy;
using std::for_each;
using std::random_shuffle;

#include <iostream>
using std::cout;
using std::endl;

#include <vector>
using std::iterator;
using std::vector;

void Write(int i)
{
    cout << i << endl;
}

int main()
{
    const short MAX_LIST = 1000,
    			MAX_NUMBER = 100;
    float number = 0;
    vector<vector<float> > v (MAX_LIST),
    					   v2 (MAX_LIST);
    vector<float> list(MAX_NUMBER);

    //Fills list and fills v with list
    for(vector<vector<float> >::iterator v_iter = v.begin(); v_iter != v.end(); ++v_iter)
    {
    	for(vector<float>::iterator list_iter = list.begin(); list_iter != list.end(); ++list_iter)
    	{
    		*list_iter = number;
    		++number;
    	}
    	*v_iter = list;
    }

    //write v to console
    for(vector<vector<float> >::iterator v_iter = v.begin(); v_iter != v.end(); ++v_iter)
    {
    	for_each(v_iter->begin(), v_iter->end(), Write);
    }

    //copy v to v2
    cout << "Copying..." << endl;
    copy(v.begin(), v.end(), v2.begin());
    cout << "Finished copying!" << endl;

    cout<< "Shuffling..." << endl;
    random_shuffle(v2.begin(), v2.end());
    cout << "Finished shuffling!" << endl;

    //write v2 to console
    for(vector<vector<float> >::iterator v_iter = v2.begin(); v_iter != v2.end(); ++v_iter)
    {
    	for_each(v_iter->begin(), v_iter->end(), Write);
    }
}
link|flag
You were very explicit about your dependencies, but using std::iterator; may fail if you don't #include <iterator>. Instead of Write have you seen std::ostream_iterator? – Roger Pate Jul 5 at 18:04
If I am not mistaken, vector already includes iterator and I am using a vector iterator. Therefore, I believe it shouldn't fail. On the other hand, using std::ostream_iterator could be a great option instead of Write! – Partial Jul 5 at 21:48
This doesn't answer the question. The OP was trying to copy from a 2D array to a 2D vector. Your only call to std::copy copies a 2D vector to another 2D vector. It shows the usage of standard algorithms, but it doesn't help drewster much. – A. Levy Aug 17 at 17:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.