I'm reading "Introduction to Algorithm" CLRS. and the authors are talking about loop invariants, in chapter 2 (Insertion Sort). I don't have any idea of what it means.
|
|
In simple words, a loop invariant is some predicate (condition) that holds for every iteration of the loop. For example, let's look at a simple
In this example it is true (for every iteration) that |
|||||||||||||||
|
|
I like this very simple definition:
By itself, a loop invariant doesn't do much. However, given an appropriate invariant, it can be used to help prove the correctness of an algorithm. The simple example in CLRS probably has to do with sorting. For example, let your loop invariant be something like, at the start of the loop, the first An even simpler example is shown at http://academic.evergreen.edu/curricular/dsa01/loops.html. The way I understand a loop invariant is as a systematic, formal tool to reason about programs. We make a single statement that we focus on proving true, and we call it the loop invariant. This organizes our logic. While we can just as well argue informally about the correctness of some algorithm, using a loop invariant forces us to think very carefully and ensures our reasoning is airtight. |
|||
|
|
Beside all of the good answers, I guess a great example from How to Think About Algorithms, by Jeff Edmonds can illustrate the concept very well:
|
|||||
|
|
Invariant in this case means a condition that must be true at a certain point in every loop iteration. In contract programming, an invariant is a condition that must be true (by contract) before and after any public method is called. |
|||
|
|
|
It should be noted that a Loop Invariant can help in the design of iterative algorithms when considered an assertion that expresses important relationships among the variables that must be true at the start of every iteration and when the loop terminates. If this holds, the computation is on the road to effectiveness. If false, then the algorithm has failed. |
|||
|
|
|
There is one thing that many people don't realize right away when dealing with loops and invariants. They get confused between the loop invariant, and the loop conditional ( the condition which controls termination of the loop ). As people point out, the loop invariant must be true
( although it can temporarily be false during the body of the loop ). On the other hand the loop conditional must be false after the loop terminates, otherwise the loop would never terminate. Thus the loop invariant and the loop conditional must be different conditions. A good example of a complex loop invariant is for binary search.
So the loop conditional seems pretty straight forward - when start > end the loop terminates. But why is the loop correct? What is the loop invariant which proves it's correctness? The invariant is the logical statement:
This statement is a logical tautology - it is always true in the context of the specific loop / algorithm we are trying to prove. And it provides useful information about the correctness of the loop after it terminates. If we return because we found the element in the array then the statement is clearly true, since if Now what about what I said about the loop conditional necessarily being false when the loop terminates? It looks like when the element is found in the array then the loop conditional is true when the loop terminates!? It's actually not, because the implied loop conditional is really |
|||
|
|
can the loop invariant for that also be 9-(i-j)? Through every iteration of the loop, that equation holds til termination. I also know that you can use Hoare's logic to deduct the loop invariant. Correct me if I'm wrong. |
||||
|
|
In the simplest terms, it's something that will not change at any point in a given loop. They're useful because, since they don't change within the loop they can often be moved outside the loop to reduce the computation done each loop, thus improving execution speed. It's a pretty common optimisation technique used by most compilers. A very contrived example:
optimised to:
saving computation of |
|||||
|