Why does the Standard define end() as one past the end, instead of at the actual end?
|
|
The best argument easily is the one made by Dijkstra himself:
You still need to justify why you start counting at zero rather than one, but that wasn't part of your question. The wisdom behind the [begin, end) convention pays off time and again when you have any sort of algorithm that deals with multiple nested or iterated calles to range-based constructions, which chain naturally. By contrast, using a doubly-closed range would incur off-by-ones and extremely unpleasant and noisy code. For example, consider a partition [n0, n1)[n1, n2)[n2,n3). Another example is the standard iteration loop Finally, we can also make a nice argument why counting should start at zero: With the half-open convention for ranges that we just established, if you are given a range of N elements (say to enumerate the members of an array), then 0 is the natural "beginning" so that you can write the range as [0, N), without any awkward offsets or corrections. In a nutshell: the fact that we don't see the number |
|||||||||||||||
|
|
Why does the Standard define Because:
|
||||
|
|
|
Because then
and you won't have to do awkward things like
and you won't accidentally write erroneous code like
Also: What would Oh, and see this related post. Also:If the |
|||||||||||||
|
|
Actually, a lot of iterator related stuff suddenly makes much more sense if you consider the iterators not pointing at the elements of the sequence but in between, with dereferencing accessing the next element right to it. Then the "one past end" iterator suddenly makes immediate sense:
Obviously
and you immediately see that the range of elements from Even the "off-by-one" for reverse iterators suddenly becomes obvious that way: Reversing that sequence gives:
I've written the corresponding non-reverse (base) iterators in parentheses below. You see, the reverse iterator belonging to |
||||
|
|
|
The iterator idiom of half-closed ranges
Converting to half-closed ranges
To work with fully-closed ranges, it's harder:
Since pointers to arrays are iterators in C++ (and the syntax was designed to allow this), it's much easier to call Plus, if you work with half-closed ranges, you can use the
However there's no easy way to do this with fully-closed ranges. You're stuck with The only kind of iterator that supports |
||||
|
|
|
With the
With
|
||||
|
|
