Skip to main content

A package with all sorting algorithms.

Project description

pysorters

pytest Lint Coverage License: MIT GitHub last commit PyPI - Python Version GitHub repo size PyPI - Version GitHub Tag

Python package with sort methods for everything you could even imagine! :rocket: :rocket: :rocket:

Table of Contents

Installation

You can install the package via pip:

pip install pysorters

Or via git:

pip install git+https://github.com/yo1am1/pysorters.git

Usage

  1. Bubble Sort
     from pysorters import Sorter
    
     sort_1 = Sorter()
     array = [3, 2, 1]
    
     sort_1.bubble_sort(array)
    
     print(array)
     # [1, 2, 3]
    
     sort_2 = Sorter([10, 9, 6, 7, 8, 3, 5, 4, 2, 1])
    
     result = sort_2.quick_sort()
    
     print(result)
     # [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]                
    
  2. Quick Sort
     from pysorters import Sorter, gran_array_int
    
     sort = Sorter(gran_array_int(10, 1, 10))
    
     result = sort.quick_sort()
    
     print(result)
    

... and many more!

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

pysorters-0.5.6.tar.gz (9.7 kB view hashes)

Uploaded Source

Built Distribution

pysorters-0.5.6-py3-none-any.whl (9.9 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