Question: c++ please I need a clearly ans , thx. Fibonacci Numbers Given below is the pseudocode and the C++ code describing a recursive Fibonacci algorithm.


Fibonacci Numbers Given below is the pseudocode and the C++ code describing a recursive Fibonacci algorithm. Write a C++ program that implements an iterative algorithm using the pseudocode given below. Compare the two approaches in terms of efficiency and write a summary of your findings. Look for differences in terms of time and space complexity as well as code simplicity. Show examples to support your findings / claims. For a sufficiently detailed summary, you will probably need at least one page of text for your response. How to submit When you are done with the C++ program copy and paste the code into a Word document (Or any text editor). Include in the same file your summary about your comparison findings. Save the file as LastName.FirstName.HW3.docx Post it on Blackboard How to submit When you are done with the C++ program copy and paste the code into a Word document (Or any text editor). Include in the same file your summary about your comparison findings. Save the file as LastName.FirstName.HW3.docx Post it on Blackboard Pseudocode: A Recursive Algorithm for Fibonacci Numbers. 1 procedure fibonacci (n: nonnegative integer) 2 if n=0 then 3 return 0 4 else if n=1 then 5 return 1 6 else return fibonacci (n1)+ fibonacci (n2) 7 (output is fibonacci (n)} Pseudocode: An Iterative Algorithm for Fibonacci Numbers. 1 procedure iterative fibonacci(n: nonnegative integer) 2 . if n=0 then 3456789101return0elsex:=0y:=1fori:=1ton1z:=x+yx:=yy:=z return y 12 foutput is the nth Fibonacci number\}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
