Re: on goto
In comp.lang.c++ Nathan <nathancbaker@gmail.com> wrote:
Well, 'y < x' must evaluate as 'true' in order for something to be
classified as simpler. So, because *one loop* < *three loops*, my
version certainly looks simpler. [e.g. less opcodes in the generated
binary ]
"Simpler" does not mean "produces a smaller executable file" or "has
less loops". "Simpler" means "easier to understand".
Your version may have less loops, but you have replaced them with
complex conditional statements, which are unusual and useless (because
they don't do anything the loops weren't doing already).
(Ironically, your version is also less efficient because it performs
all three index range checks at each iteration, while the nested loop
version does only one index range check for the innermost iteration.)
More importantly, it can dereference index [0] before checking size(),
so produces undefined behaviour. ?Anyway, IMHO it's far less clear
(=self-evidently correct & efficient as well as maintainable) than
Juha's code.
More maintainable by the original coder... or more maintainable by
someone 'new' to the code??? If this function were many screens in
length, and someone 'new' decides to have it perform an extra task
'just' before returning, wouldn't that person have a "devil of a time"
debugging the program if he were not aware of the hidden alternative
'return' route tucked-away in that nest?
Even if you had an understandability problem with a "hidden return",
the correct solution is not to make the whole thing an unusual and hard
to understand construct which is probably even less efficient.
Yes, rather than waste one's time bickering about the various esteemed
implementation alternatives of a particular algo, why not consider an
algo that renders those salient points mute?
Because the whole point of this thread is "how to exit nested loops
most cleanly?", not "what is the best way of doing task X?"