A multi-thread binary search
Project description
MultiBinary
A Multi-Thread Binary search written in Python3 by Devin Wallace
Usage
import MultiBinary
print(MultiBinary.binary_search(somelist, someitem))
>>>[[True, 12, 'hello']]
Methods
binary_search(somelist, someitem, t_limit=100)
- somelist this is the list you are searching through, it is set up to handle a 1-dimensional list.
- someitem this is the item you are searching for within the list.
- t_limit t_limit is the thread count limit, by default it is set to 100 threads, meaning that there will be 100 searches done simultaneously. consider your machines processing power before altering
binary_search return [[True, 9, 802], [True, 44, 802]] returns a 2D list where
- [0][0] = boolean if found
- [0][1] = index in list
- [0][2] = item searched for
Testing
import random, MultiBinary
list = []
for i in range(random.randint(20,100)):
list.append(random.randint(300,399))
print(MultiBinary.binary_search(list, 369))
>>>[[True, 35, 369], [True, 44, 369]]
Installing
pip instal MultiBinary
Hashes
MultiBinary-1.0.0.tar.gz
- SHA265: 92b8cf64d6701af578275fec82ee627a20bf4b83cfbe98dcc7e77577e0c61001
MultiBinary-1.0.0-py3-none-any.whl
- SHA256: 92b8cf64d6701af578275fec82ee627a20bf4b83cfbe98dcc7e77577e0c61001
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
MultiBinary-1.0.0.tar.gz
(2.1 kB
view hashes)
Built Distribution
Close
Hashes for MultiBinary-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee4229a140cd18796dc31f72e9def844258adbc3d2fff08105a1cbe5ed9f45db |
|
MD5 | 9254c0e8cf1e2482767786405384ff97 |
|
BLAKE2b-256 | a1d20a7a09c99f100919b72b23a52c309e0ec90d969edf464ecc3d19589aa659 |