Module algos::search[][src]

A module for using searching algorithms.

The array must be crescent ordered.

Functions

binary

Binary Search: Search for the value 'x' in an array.

exponential

Exponential Search: Search for the value 'x' in an array.

fibonacci

Fibonacci Search: Search for the value 'x' in an array.

linear

Linear Search: Search for the value 'x' in an array.