Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Argue the correctness of heap_increase_key (img1) using the following loop invariant: At the start of each iteration of the while loop in line 7, the

Argue the correctness of heap_increase_key (img1) using the following loop invariant:

At the start of each iteration of the while loop in line 7, the array A[0:heap_size] satisfies the max-heap property, except that there may be one violation: A[i] may be larger than parent(i).

Recall that for the proof you must show three things, as listed on img2.

img1:

image text in transcribed

img2:

image text in transcribed

\( \begin{array}{lc}1 & \text { def heap_increase_key }(A, \quad i, k e y): \\ 2 & \text { if key } A[i]: \\ 3 & \text { raise Exception("The new key } \backslash \\ 4 & \quad \text { is smaller } \backslash \\ 5 & \text { than the current") } \\ 6 & \text { A }[i]=\text { key } \\ 7 & \text { while } i>0 \text { and } A[\operatorname{parent}(i)]i, it is also true before iteration i+1 (for any i ) Termination: When the loop terminates, the invariant gives a property which can be used to show the algorithm is correct \( \begin{array}{lc}1 & \text { def heap_increase_key }(A, \quad i, k e y): \\ 2 & \text { if key } A[i]: \\ 3 & \text { raise Exception("The new key } \backslash \\ 4 & \quad \text { is smaller } \backslash \\ 5 & \text { than the current") } \\ 6 & \text { A }[i]=\text { key } \\ 7 & \text { while } i>0 \text { and } A[\operatorname{parent}(i)]i, it is also true before iteration i+1 (for any i ) Termination: When the loop terminates, the invariant gives a property which can be used to show the algorithm is correct

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Are fixed costs also sunk costs? Explain.

Answered: 1 week ago