I need to iterate over a vector from the end to the beginnig. The \"correct\" way is
for(std::vector::reverse_iterator rit = v.rbegin(); rit !=
loop condition i != std::numeric_limits::max() ... or use UINT_MAX if you think its to verbose. or another way: for(unsigned j=0, end=v.size(), i=end-1; j or for(unsigned end=v.size(), i=end-1; (end-i)
i != std::numeric_limits::max()
UINT_MAX
for(unsigned j=0, end=v.size(), i=end-1; j or for(unsigned end=v.size(), i=end-1; (end-i)
for(unsigned end=v.size(), i=end-1; (end-i)