Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCreate FibonacciSearch.java #1869
Conversation
Fibonacci search technique is a method of searching a sorted array using a divide and conquer algorithm that narrows down possible locations with the aid of Fibonacci numbers. Compared to binary search where the sorted array is divided into two equal-sized parts, one of which is examined further, Fibonacci search divides the array into two parts that have sizes that are consecutive Fibonacci numbers.
|
Fibonacci Search is a comparison-based technique that uses Fibonacci numbers to search an element in a sorted array. |
|
Can someone please review and suggest/merge the pull request. |
|
Can someone please review and suggest/merge the pull request. If there's any problem merging the pull request, then do comment down below. |
Fibonacci search technique is a method of searching a sorted array using a divide and conquer algorithm that narrows down possible locations with the aid of Fibonacci numbers. Compared to binary search where the sorted array is divided into two equal-sized parts, one of which is examined further, Fibonacci search divides the array into two parts that have sizes that are consecutive Fibonacci numbers.
Describe your change:
References
Checklist:
Fixes: #{$ISSUE_NO}.