allalgorithms-python

Jump Search

In computer science, jump search is a search algorithm for sorted array which find the element by jumping ahead by fixed steps or skipping some elements in place of searching all elements.

Install

pip install allalgorithms

Usage

from allalgorithms.searches import jump_search

arr = [-2, 1, 2, 7, 10, 77]

print(jump_search(arr, 7))
# -> 3

print(jump_search(arr, 3))
# -> None

API

jump_search(array, query)

Return array index if its found, otherwise returns None

Params:
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy