Skip to content

the-code-teller/Searching-Algorithms

Repository files navigation

Searching-Algorithms

This Repository contains Searching Algorithms in an Array.

Input Format : an int num for value you want to search in the array Output Format : num found at index i Space Complexity : O(1)

Time Complexity :

Linear Search : O(N) Binary Search : O(log N) Jump Search : O(√N) Interpolation Search : O(log log N) if elements are uniformly distributed Exponential Search : O(log N)

About

This Repository contains Searching Algorithms in an Array.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages