FerdausPolok / dev-mates

A repository for storing useful code snippets that assist with everyday tasks, helping to streamline and improve day-to-day development workflows.
Apache License 2.0
8 stars 14 forks source link

Adding a new Python Searching algorithm : Jump Search #34

Open ajogseneca opened 3 weeks ago

ajogseneca commented 3 weeks ago

Jump Search

Jump search is an efficient algorithm designed for searching an element in a sorted array. It works by dividing the array into blocks of a fixed size (jump size), and then checks the elements in increments (or "jumps") of that size. Once it finds a block that contains the target, it performs a linear search within that block.

ajogseneca commented 3 weeks ago

Hi @FerdausPolok, I came upon this Repo as part of my course work to get involved with Open Source and Hacktoberfest, first of all thankyou for hosting this repo for the fest. An update for my issue i have a send a PR, please let me know any other changes are required or not i am happy to help and i have some ideas that we can use in this repo in the future. Thanks again !

FerdausPolok commented 3 weeks ago

Great. I would also request you to add a description into the PR and assign me there as a reviewer once you're done. Thanks @ajogseneca for your contribution. 🚀