A small sample package with two search algorithms
Project description
Algo-lib (the Algorithm Library)
This is a simple example package. It contains two searching algorithms. The purpose of this repo is to practice packaging a library for distribution.
For package distribution information and release history, see: https://pypi.org/project/algo-lib/
Quick Start
- Install algo-lib from the command line using pip.
python3 -m pip install --upgrade algo-lib
Example Usage
- Binary Search
from algo_lib import search
lst = [1, 50, 99, 150, 40000]
targetValue = 99
#binary search returns the index of a target value if present in a sorted list
targetIndex = search.binary(lst, 0, len(lst) - 1, targetValue) #targetIndex is 2
- Linear Search
from algo_lib import search
lst = [5, 1, 2, 100, 41, -1]
targetValue = -1
#linear search returns the index of a target value if present in list
targetIndex = search.binary(lst, targetValue) #targetIndex is 5
- Merge Sort
from algo_lib import sort
lst = [5, 1, 2, 100, 41, -1]
#merge sort takes a list argument, and sorts it in either increasing or decreasing order
targetIndex = sort.merge(lst) #lst is [-1, 1, 2, 5, 41, 100]
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
algo-lib-0.0.5.tar.gz
(3.4 kB
view details)
Built Distribution
File details
Details for the file algo-lib-0.0.5.tar.gz
.
File metadata
- Download URL: algo-lib-0.0.5.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4309d634f51cf2e2b6dcf283aca919fd9f3dc6fb93d1fdada877dfbceea6e12 |
|
MD5 | 68c3c0d1cf91c9e573409c586c1cb773 |
|
BLAKE2b-256 | 7f6ca7cb7ef7fc53d6a55ecc38f58cbffb9ba8986962bccb1502dcc8650a5216 |
File details
Details for the file algo_lib-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: algo_lib-0.0.5-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dd5ac97cf92c4213eff0363f87b5ca9af11a79d19afd96a37464c071ba147b9 |
|
MD5 | 4717d7cce78a1fb956a3b910b1b7fd0c |
|
BLAKE2b-256 | 0cba6c06850bf3f8b97c8884f79761eeee81a227df385d279192b0550af43c5e |