Binary search - bisect_left and bisect_right with more flexible comparison
Project description
Bsearch
Binary search in python with more flexible comparisons.
Installation
pip install bsearch
Usage
bisect_left
and bisect_right
are backwards compatible with the bisect library. For example:
from bsearch import bisect_left
a = [1,2,3,4,5]
i = bisect_left(a, 4) # returns 3
You can use the key
option to search arrays of different types
from bsearch import bisect_left
a = [(1,100), (2, 100), (5,200)]
# using the first element of the tuple as the key
i = bisect_left(a, 2, key=lambda x: x[0]) # returns 1
To search descending list, use the wrapper binary_search
, and provide an operator. This will return the smallest i
such that op(a[i], v)
from bsearch import binary_search
a = [5, 4, 3, 2]
i = binary_search(a, 4, op=lambda a b: a >= b) # returns 1
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bsearch-0.0.2.tar.gz
(1.8 kB
view details)
Built Distribution
File details
Details for the file bsearch-0.0.2.tar.gz
.
File metadata
- Download URL: bsearch-0.0.2.tar.gz
- Upload date:
- Size: 1.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 037886d13dbf97c67ade8011fc434671e14c40aed8cc5f19394bdc827838a867 |
|
MD5 | b375e9d94c78f788019bb633c9e6863e |
|
BLAKE2b-256 | d7d4c55467a9c68253c46ebf114a9adabf056d701a82c2b1261765a8a1cd3f9d |
File details
Details for the file bsearch-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: bsearch-0.0.2-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 110d88089caca3dbb8530be6bb353d4693835800e88ff476b7f1a034e1303501 |
|
MD5 | dfc550c117b5eb3dd68bb39c675a4957 |
|
BLAKE2b-256 | 7117edd639c726e73511fbafab8add9a94b980c5650592ad229693d08d96a958 |