vote up 5 vote down star
2

When I was taking CS in college (mid 80's), one of the ideas that was constantly repeated was to always write loops which test at the top (while...) rather than at the bottom (do ... while) of the loop. These notions were often backed up with references to studies which showed that loops which tested at the top were statistically much more likely to be correct than their bottom-testing counterparts.

As a result, I almost always write loops which test at the top. I don't do it if it introduces extra complexity in the code, but that case seems rare. I notice that some programmers tend to almost exclusively write loops that test at the bottom. When I see constructs like:

if (condition)
{
    do
    {
       ...
    } while (same condition);
}

or the inverse (if inside the while), it makes me wonder if they actually wrote it that way or if they added the if statement when they realized the loop didn't handle the null case.

I've done some googling, but haven't been able to find any literature on this subject. How do you guys (and gals) write your loops?

flag
"statistically much more likely to be correct" Forget statistics. The proof of a top-of-the-loop condition is simple. The proof of a bottom-of-the-loop condition is much more complex. – S.Lott Oct 22 '08 at 0:35
Related question: stackoverflow.com/questions/224138/… – CesarB Oct 22 '08 at 1:16
1  
I had a CS professor circa 1997 proclaim that your two choices in programming were C or Pascal, and that you should choose Pascal because it didn't let you increment loop counters from inside the loop. He might have been right, but boy was he wrong. – MusiGenesis Oct 22 '08 at 2:23

12 Answers

vote up 0 vote down

I write mine pretty much exclusively testing at the top. It's less code, so for me at least, it's less potential to screw something up (e.g., copy-pasting the condition makes two places you always have to update it)

link|flag
vote up 37 vote down

I always follow the rule that if it should run zero or more times, test at the beginning, if it must run once or more, test at the end. I do not see any logical reason to use the code you listed in your example. It only adds complexity.

link|flag
You beat me to it! +1 – Nescio Oct 22 '08 at 0:38
Since I've never seen a "one-or-more times" loop, I think this can be simplified somewhat. Maybe I just live in a closed world. – S.Lott Oct 22 '08 at 9:27
This is the only valid answer. – echorhyn Jun 15 at 12:59
vote up 5 vote down

For the sake of readability it seems sensible to test at the top. The fact it is a loop is important; the person reading the code should be aware of the loop conditions before trying to comprehend the body of the loop.

link|flag
It is beyond me how anyone can view my answer as unhelpful. – Max Howell Oct 22 '08 at 0:56
Although not as complete as Brett McCann's answer, yours doesn't really deserve a down vote. I partially agree with your readability concern. There other things like breaks, returns etc. that give an equal amount of uncertainty to a loop that tests at the bottom. – Ates Goral Oct 22 '08 at 1:03
I would say the if...do...while construct is awful advise for a programmer. The do...while construct is well known and serves its purpose. Also, using this the if..do..while you are testing the same condition twice, which is an unnecessary performance hit. – Mark Lubin Oct 22 '08 at 1:14
I would occasionally use do {} while (), if it is a short code block. – Brad Gilbert Oct 24 '08 at 16:25
vote up 2 vote down

It's actually meant for a different things. In C, you can use do - while construct to achieve both scenario (runs at least once and runs while true). But PASCAL has repeat - until and while for each scenario, and if I remember correctly, ADA has another construct that lets you quit in the middle, but of course that's not what you're asking. My answer to your question : I like my loop with testing on top.

link|flag
vote up 2 vote down

The use cases are different for the two. This isn't a "best practices" question.

If you want a loop to execute based on the condition exclusively than use for or while

If you want to do something once regardless of the the condition and then continue doing it based the condition evaluation. do..while

link|flag
vote up 1 vote down

It really depends there are situations when you want to test at the top, others when you want to test at the bottom, and still others when you want to test in the middle.

However the example given seems absurd. If you are going to test at the top, don't use an if statement and test at the bottom, just use a while statement, that's what it is made for.

link|flag
vote up 1 vote down

You should first think of the test as part of the loop code. If the test logically belongs at the start of the loop processing, then it's a top-of-the-loop test. If the test logically belongs at the end of the loop (i.e. it decides if the loop should continue to run), then it's probably a bottom-of-the-loop test.

You will have to do something fancy if the test logically belongs in them middle. :-)

link|flag
vote up 2 vote down

For anyone who can't think of a reason to have a one-or-more times loop:

try {
    someOperation();
} catch (Exception e) {
    do {
        if (e instanceof ExceptionIHandleInAWierdWay) {
            HandleWierdException((ExceptionIHandleInAWierdWay)e);
        }
    } while ((e = e.getInnerException())!= null);
}

The same could be used for any sort of hierarchical structure.

in class Node:

public Node findSelfOrParentWithText(string text) {
    Node node = this;
    do {
        if(node.containsText(text)) {
            break;
        }
    } while((node = node.getParent()) != null);
    return node;
}
link|flag
Node node = this; while (node != null) { if (node.containsTest(text) break; node = node.getParent(); } is much more readable to me (of course not in a comment like this). – Yishai Jun 15 at 12:44
vote up 1 vote down

I guess some people test at the bottom because you could save one or a few machine cycles by doing that 30 years ago.

link|flag
vote up 0 vote down

To write code that is correct, one basically needs to perform a mental, perhaps informal proof of correctness.

To prove a loop correct, the standard way is to choose a loop invariant, and an induction proof. But skip the complicated words: what you do, informally, is figure out something that is true of each iteration of the loop, and that when the loop is done, what you wanted accomplished is now true. The loop invariant is false at the end, for the loop to terminate.

If the loop conditions map fairly easily to the invariant, and the invariant is at the top of the loop, and one infers that the invariant is true at the next iteration of the loop by working through the code of the loop, then it is easy to figure out that the loop is correct.

However, if the invariant is at the bottom of the loop, then unless you have an assertion just prior to the loop (a good practice) then it becomes more difficult because you have to essentially infer what that invariant should be, and that any code that ran before the loop makes the loop invariant true (since there is no loop precondition, code will execute in the loop). It just becomes that more difficult to prove correct, even if it is an informal in-your-head proof.

link|flag
vote up 0 vote down

This isn't really an answer but a reiteration of something one of my lecturers said and it interested me at the time.

The two types of loop while..do and do..while are actually instances of a third more generic loop, which has the test somewhere in the middle.

begin loop
  <Code block A>
  loop condition
  <Code block B>
end loop

Code block A is executed at least once and B is executed zero or more times, but isn't run on the very last (failing) iteration. a while loop is when code block a is empty and a do..while is when code block b is empty. But if you're writing a compiler, you might be interested in generalizing both cases to a loop like this.

link|flag
vote up 0 vote down

I would say it is bad practice to write if..do..while loops, for the simple reason that this increases the size of the code and causes code duplications. Code duplications are error prone and should be avoided, as any change to one part must be performed on the duplicate as well, which isn't always the case. Also, bigger code means a harder time on the cpu cache. Finally, it handles null cases, and solves head aches.

Only when the first loop is fundamentally different should one use do..while, say, if the code that makes you pass the loop condition (like initialization) is performed in the loop. Otherwise, if it certain that loop will never fall on the first iteration, then yes, a do..while is appropriate.

link|flag

Your Answer

Get an OpenID
or

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