This repository aims to demonstrate search algorithms in multiple languages.
| Algorithm | Information | Technology |
|---|---|---|
| Linear search | Go to detail π | C# |
| Binary search | Go to detail π | C# |
- Jump Search
- Interpolation Search
- Exponential Search
- Sublist Search
- Fibonacci Search
- The Ubiquitous Binary Search
- Recursive program to linearly search an element in a given array
- Recursive function to do substring search
- Unbounded Binary Search Example
Create and go to the directory where you want to place the repository
cd my-directoryClone the project
git clone https://github.com/pncsoares/search-algorithms.gitGo to the project directory
cd search-algorithms dotnet build SearchAlgorithms dotnet test SearchAlgorithms.TestsMIT