https://github.com/dahlitzflorian/sortingalgorithms
Sorting algorithms written in and made for Python
https://github.com/dahlitzflorian/sortingalgorithms
python python-packages python3 sort sorting-algorithms
Last synced: 2 months ago
JSON representation
Sorting algorithms written in and made for Python
- Host: GitHub
- URL: https://github.com/dahlitzflorian/sortingalgorithms
- Owner: DahlitzFlorian
- License: mit
- Created: 2017-04-12T15:39:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-21T18:49:26.000Z (about 8 years ago)
- Last Synced: 2025-01-08T13:27:31.621Z (4 months ago)
- Topics: python, python-packages, python3, sort, sorting-algorithms
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sorting Algorithms #
[](https://travis-ci.org/DahlitzFlorian/SortingAlgorithms)## 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](https://bitbucket.org/Train132/sortingalgorithms).
On [GitHub](https://github.com/DahlitzFlorian/SortingAlgorithms)
appear only the already tested releases. So if you want to
keep up-to-date you should have a look at
[Bitbucket](https://bitbucket.org/Train132/sortingalgorithms)
once in a while. If you just want to see the tested releases
available on [PyPI](https://pypi.python.org) you have to
have a look at [GitHub](https://github.com/DahlitzFlorian/SortingAlgorithms).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```
```bash
pip install sort-algorithms
```## Upgrade ##
You also can upgrade on the latest version with additional
algorithms and features with:
```bash
pip install sort-algorithms --upgrade
```