shreyansh-sawarn / Hacktoberfest

Participate in Hacktoberfest. Learn and get started. Contribute to open source. Make sure your pull requests are legitimate. Enjoy and have fun.
22 stars 80 forks source link

Jump-Search and Exponential Search algorithm #125

Closed PruthviPatel2001 closed 4 years ago

PruthviPatel2001 commented 4 years ago

1.Jump-Search algorithm is searching algorithm for sorted array. Its check fewer element by jumping by fixed number.

2.Exponential Search algorithm is searching algorithm as well. size of search increase by power of 2 eg-2^0,2^1 etc and if , no element found till last element search size will start reducing backward.