Answered step by step
Verified Expert Solution
Question
1 Approved Answer
4. Problem 4: You have the following code on which the programmer included desired precondition and postconditions and included (hopefully) correct loop invariants on each
4. Problem 4: You have the following code on which the programmer included desired precondition and postconditions and included (hopefully) correct loop invariants on each of the loops. Given the stated post- condition (i.e. goal) for the code, you are to: a) State whether the given loop invariants are correct, and if not to give corrected loop invariants. b) For each numbered statement, give the correct weakest precondition for that statement. c) Determine whether the weakest precondition for statement 1 is logically inferred from the stated precon- dition of the code. Precondition: n > 0 and A contains n elements indexed from 0 1. bound = n; /* Loop invariant: A [bound, ..,(n-1)] is sorted (non-decreasing) and A[bound] >= A[0,.., bound-1] */ 2. while (bound > 0) { 3. t = 0; i = 0; /* Loop invariant: A[t] is the largest element of A[0,..,t] */ 5. while (i A[i+1]) { 7. swap = A[i]; 8. A[i] = A[i+1]; 9. A[i+1] = swap; 10. t = i+1; } 11. i++; } 12. bound = t; } Postcondition: A[0]
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started