Skip to main content

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

  1. Install algo-lib from the command line using pip.
python3 -m pip install --upgrade algo-lib

Example Usage

  1. 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
  1. 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
  1. 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 hashes)

Uploaded Source

Built Distribution

algo_lib-0.0.5-py3-none-any.whl (6.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page