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.1.tar.gz
(1.8 kB
view details)
Built Distribution
File details
Details for the file bsearch-0.0.1.tar.gz
.
File metadata
- Download URL: bsearch-0.0.1.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 | 5bee16a5a4087890172397f48e5463514bae16dc47286ee6c885780c6788bd70 |
|
MD5 | 6554ff85d30f1c1e419fcb52a6402bfc |
|
BLAKE2b-256 | ddaecad2fd50352ed090d01da728f115ab30be1cf3628611bfba3c7d0aa440d0 |
File details
Details for the file bsearch-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: bsearch-0.0.1-py3-none-any.whl
- Upload date:
- Size: 2.2 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 | a727146f5fbe192c3c80d17d4e736c266da87ed894930187fec2302c5b2a6062 |
|
MD5 | aa8d94057302d1881969c56916ba4f5e |
|
BLAKE2b-256 | 1f8c4bb846a35901c9bb23e9b430ec0432ddf901e4e615df9de483706bdd2a27 |