Fibonacci Search in 10 minutes (by learn-dsa.com).

Download the code from : learn-dsa.com/SearchFibonacci.html Subscribe to channel using this link :    / @dsasuperfast   For Searching Algorithms use this playlist: "Learn Searching with Ritika" In Fibonacci Series, every number is the sum of the previous 2 numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21. The Fibonacci search algorithm works on sorted lists. The algorithm partitions the list into 3 parts by using partitions with size equal to consecutive Fibonacci numbers.