Skip to content

DahlitzFlorian/SortingAlgorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sorting Algorithms

Build Status

Description

This project includes a various number or sorting algorithms written in Python. It was tested with Python >= 3.4.

The repository, where all the commits will be pushed, is on Bitbucket. On GitHub appear only the already tested releases. So if you want to keep up-to-date you should have a look at Bitbucket once in a while. If you just want to see the tested releases available on PyPI you have to have a look at GitHub.

version 1.0.2

Algorithms

  • Bubble-Sort (slow)
  • Ripple-Sort (slow)
  • Min-Sort (better than previous ones)
  • Quick-Sort (very fast and efficient)

Additional

  • sorting of non-nested tuples (very fast)

Installation

The current version is available via pip

pip install sort-algorithms

Upgrade

You also can upgrade on the latest version with additional algorithms and features with:

pip install sort-algorithms --upgrade