Fibonacci search is a comparison-based search algorithm that uses Fibonacci numbers to divide a sorted array into unequal parts for searching an element. It has O(log n) time complexity like binary search but examines relatively closer elements in subsequent steps, making it more efficient than binary search when the input array is large and cannot fit in memory. The algorithm finds the smallest Fibonacci number greater than or equal to the array length to determine indices for dividing the array. It recursively searches subarrays by comparing elements to the target value and eliminating parts of the array based on the comparison using Fibonacci numbers.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
146 views7 pages
Unit 2 Fibonacci Search
Fibonacci search is a comparison-based search algorithm that uses Fibonacci numbers to divide a sorted array into unequal parts for searching an element. It has O(log n) time complexity like binary search but examines relatively closer elements in subsequent steps, making it more efficient than binary search when the input array is large and cannot fit in memory. The algorithm finds the smallest Fibonacci number greater than or equal to the array length to determine indices for dividing the array. It recursively searches subarrays by comparing elements to the target value and eliminating parts of the array based on the comparison using Fibonacci numbers.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 7
Fibonacci Search
• Given a sorted array arr[] of size n and an element x to be searched in it. Return index of x if it is present in array else return -1. • Examples:
• Input: arr[] = {2, 3, 4, 10, 40}, x = 10
• Output: 3 • Element x is present at index 3.
• Input: arr[] = {2, 3, 4, 10, 40}, x = 11
• Output: -1 • Element x is not present. • Fibonacci Search is a comparison-based technique that uses Fibonacci numbers to search an element in a sorted array.
• Similarities with Binary Search:
• Works for sorted arrays
• A Divide and Conquer Algorithm. • Has Log n time complexity.
• Differences with Binary Search:
• Fibonacci Search divides given array into unequal parts
• Binary Search uses a division operator to divide range. Fibonacci Search doesn’t use /, but uses + and -. The division operator may be costly on some CPUs. • Fibonacci Search examines relatively closer elements in subsequent steps. So when the input array is big that cannot fit in CPU cache or even in RAM, Fibonacci Search can be useful. • Background: • Fibonacci Numbers are recursively defined as F(n) = F(n-1) + F(n-2), F(0) = 0, F(1) = 1. First few Fibonacci Numbers are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, … • Observations: • Below observation is used for range elimination, and hence for the O(log(n)) complexity.
• F(n - 2) ≈ (1/3)*F(n) and
• F(n - 1) ≈ (2/3)*F(n). • Algorithm: Let the searched element be x. The idea is to first find the smallest Fibonacci number that is greater than or equal to the length of the given array. Let the found Fibonacci number be fib (m’th Fibonacci number). • We use (m-2)’th Fibonacci number as the index (If it is a valid index). • Let (m-2)’th Fibonacci Number be i, we compare arr[i] with x, if x is same, we return i. • Else if x is greater, we recur for subarray after i, else we recur for subarray before i. Below is the complete algorithm Let arr[0..n-1] be the input array and the element to be searched be x. • Find the smallest Fibonacci Number greater than or equal to n. Let this number be fibM [m’th Fibonacci Number]. Let the two Fibonacci numbers preceding it be fibMm1 [(m-1)’th Fibonacci Number] and fibMm2 [(m-2)’th Fibonacci Number]. • While the array has elements to be inspected: • Compare x with the last element of the range covered by fibMm2 • If x matches, return index • Else If x is less than the element, move the three Fibonacci variables two Fibonacci down, indicating elimination of approximately rear two-third of the remaining array. • Else x is greater than the element, move the three Fibonacci variables one Fibonacci down. Reset offset to index. Together these indicate the elimination of approximately front one-third of the remaining array. • Since there might be a single element remaining for comparison, check if fibMm1 is 1. If Yes, compare x with that remaining element. If match, return index. // C program for Fibonacci Search #include <stdio.h>
// Utility function to find minimum of two elements int min(int x, int y) { return (x <= y) ? x : y; }
/* Returns index of x if present, else returns -1 */ int fibMonaccianSearch(int arr[], int x, int n) { /* Initialize fibonacci numbers */ int fibMMm2 = 0; // (m-2)'th Fibonacci No. int fibMMm1 = 1; // (m-1)'th Fibonacci No. int fibM = fibMMm2 + fibMMm1; // m'th Fibonacci
/* fibM is going to store the smallest Fibonacci Number greater than or equal to n */ while (fibM < n) { fibMMm2 = fibMMm1; fibMMm1 = fibM; fibM = fibMMm2 + fibMMm1; }
// Marks the eliminated range from front int offset = -1;
/* while there are elements to be inspected. Note that we compare arr[fibMm2] with x. When fibM becomes 1, fibMm2 becomes 0 */ while (fibM > 1) { // Check if fibMm2 is a valid location int i = min(offset + fibMMm2, n - 1);
/* If x is greater than the value at index fibMm2, cut the subarray array from offset to i */ if (arr[i] < x) { fibM = fibMMm1; fibMMm1 = fibMMm2; fibMMm2 = fibM - fibMMm1; offset = i; }
/* If x is greater than the value at index fibMm2, cut the subarray after i+1 */ else if (arr[i] > x) { fibM = fibMMm2; fibMMm1 = fibMMm1 - fibMMm2; fibMMm2 = fibM - fibMMm1; }
/* element found. return index */ else return i; }
/* comparing the last element with x */ if (fibMMm1 && arr[offset + 1] == x) return offset + 1;
/*element not found. return -1 */ return -1; }
/* driver function */ int main(void) { int arr[] = { 10, 22, 35, 40, 45, 50, 80, 82, 85, 90, 100,235}; int n = sizeof(arr) / sizeof(arr[0]); int x = 235; int ind = fibMonaccianSearch(arr, x, n); if(ind>=0) printf("Found at index: %d",ind); else printf("%d isn't present in the array",x); return 0; }
Derive Lagrangian Method of Interpolation, 2. Solve Problems Using Lagrangian Method of Interpolation, and 3. Use Lagrangian Interpolants To Find Derivatives and Integrals of Discrete