iiitu-force / hacktoberfest-23

Open Source Contributions for beginners in Hacktoberfest '23
MIT License
2 stars 9 forks source link

Add jump search algorithm #14

Closed manisacharya closed 11 months ago

manisacharya commented 11 months ago

Pull Request Template

Description

Added jump search algorithm. Jump Search is a searching algorithm for sorted arrays. The fundamental idea behind this searching technique is to search fewer number of elements compared to linear search algorithm (which scans every element in the array to check if it matches with the element being searched or not). This can be done by skipping some fixed number of array elements or jumping ahead by fixed number of steps in every iteration.

Screenshots (if appropriate):

image

Types of changes

Checklist: