Which algorithm technique does fibonacci search use?
Answers
Answered by
0
Answer:
Hope u have got your answer...
Explanation:
a=1
b=0
c=0
loop till where you want to run
Print c
c=a+b
a=b
b=c
Similar questions