Re: I'd like to use STL algorithms
James Hopkin wrote:
kanze wrote:
There's one thing I'm having trouble understanding here: if
the problem is stated in terms of 'for index i, do
convert(i)', why do you want to get rid of the index?
I think you're missing part of the specification: that the
problem covers all elements in the container (possibly in
order).
I'm not missing it. I'm not sure that I see its relevance with
regards to the convert function, however.
What I do see is that I would interpret the loop with the index,
and the use of transform, differently. For the loop with the
index, I would suppose that the relationship determining which
convert function to use is based on the index in the array; if
transform is used, say with boost::counting_iterator, I would
suppose that the convert function to use is based on how many
times the convert function had been used previously. As long as
I loop over all of the elements, in order, both give the same
results, but conceptually, for the reader, there is a
difference.
This is something I keep coming up against, and I would
specify it more like
for each element in container, do convert(element, index of element)
That looks good to me. Do we propose a language extension:-)?
I think it's correct to use iterators in this situation,
because the nature of the problem deosn't imply that the
container supports random access.
I'd say that when you are dealing with indexes, random access is
sort of implied. If I were to translate the above into C++, I'd
write something like:
for ( C::iterator i = c.begin() ; i != c.end() ; ++ i ) {
*i = convert( *i, std::distance( c.begin(), i ) ) ;
}
This will work even on an std::list, but if the list is long,
it's likely to be rather slow.
And the point is that of course, the convert function being used
depends on the position of the object in the container, not on
some arbitrary additional integral value which just happens to
correspond to the position in this case.
Given that, in general, an index and an iterator need to be
incremented in parallel, it makes sense to encapsulate that.
Having said all that, the background noise in the STL-style
solutions is too much for me. In C++, I'd stick with the OPs
original code.
I don't know. I'd willingly go with Vladimir Marko's solution,
IF I didn't feel that it was transmitting the wrong message
about what we were trying to do.
--
James Kanze GABI Software
Conseils en informatique orient?e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S?mard, 78210 St.-Cyr-l'?cole, France, +33 (0)1 30 23 00 34
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]