Skip to main content

Python Sorting Library

Project description

Python Sorting Library

Coverage Status

Sorting algorithms

  • Insert sort
  • Bubble sort
  • Merge sort
  • Selection sort
  • Quick sort
  • Heap sort
  • Counting sort
  • Radix sort

Each sorting algorithm contains a precise implementation with documented time and space complexity.

Install

pip install pysortlib

Usage

from pysortlib import insert_sort

array = [3, 5, 2, 1, 7, 4, 6]
insert_sort(array)  # set a breakpoint and explore \o/
print(array)

Development

Virtual environment

pip install --user poetry
poetry config virtualenvs.in-project true
poety shell
poetry install

Pre-commit

pre-commit clean
pre-commit install --hook-type pre-commit
pre-commit autoupdate

Coding standards

  • black - code formatting
  • ruff - static code analysis
  • mypy - static type checking
  • pytest - unit tests

License

This project is licensed under the terms of the MIT license.

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

pysortlib-0.1.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

pysortlib-0.1.1-py3-none-any.whl (4.4 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