Question: 4. Consider the following algorithm: 2: 1: procedure FUN(n,r) if r = 0 or r= n then return 1 3: else return FUN(n-1,r-1)+ FUN(n-1,r)

4. Consider the following algorithm: 2: 1: procedure FUN(n,r) if r=0 or r= n then return 1 3: else return

4. Consider the following algorithm: 2: 1: procedure FUN(n,r) if r = 0 or r= n then return 1 3: else return FUN(n-1,r-1)+ FUN(n-1,r) end if 5: 6: 7: end FUN (n) 1 point: Identify the precondition specification. (b) 2 points: Identify the postcondition specification. (c) 5 points: Prove the correctness of the algorithm. d) 2 points: Find the time complexity of the algorithm. 4. Consider the following algorithm: 2: 1: procedure FUN(n,r) if r = 0 or r= n then return 1 3: else return FUN(n-1,r-1)+ FUN(n-1, r) end if 5: 6: 7: end FUN (n) 1 point: Identify the precondition specification. (b) 2 points: Identify the postcondition specification. (c) 5 points: Prove the correctness of the algorithm. d) 2 points: Find the time complexity of the algorithm.

Step by Step Solution

3.43 Rating (159 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

a Identify the precondition specification The precondition specifies the conditions that must be true before the algorithm is executed In this case th... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!