Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a new Python Searching algorithm : Jump Search #34

Open
ajogseneca opened this issue Oct 5, 2024 · 2 comments · May be fixed by #35
Open

Adding a new Python Searching algorithm : Jump Search #34

ajogseneca opened this issue Oct 5, 2024 · 2 comments · May be fixed by #35
Assignees

Comments

@ajogseneca
Copy link

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
Copy link
Author

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
Copy link
Owner

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. 🚀

@FerdausPolok FerdausPolok linked a pull request Oct 9, 2024 that will close this issue
@ajogseneca ajogseneca linked a pull request Oct 9, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants