Apply multiple type of sorting algorithm on your data and also compare which sorting is fastes on your data
Project description
python-sorter
A Python package to apply multiple type of sorting algorithm on your data and also compare which sorting is fastes on your data. Visit the page for python-sorter
Installation
pip install python-sorter
Usage
import data_sorter
arr = [0.32, 0.33, 0.37, 0.42, 0.47, 0.51, 0.52]
####### To perform sorting #########
arr = data_sorter.bubble_sort(arr)
print(arr)
##### To compare execution time between different algos ######
# apply all sorting technique
result = data_sorter.get_comparison(arr)
# specify which sorting algorithm to apply
result = data_sorter.get_comparison(arr, ['bubble_sort'])
##### To plot execution time between different algos ######
# apply all sorting technique
result = data_sorter.plot_comparison(arr)
# specify which sorting algorithm to apply
result = data_sorter.plot_comparison(arr, ['bubble_sort'])
Available sorting algorithms
- brick_sort
- bubble_sort
- bucket_sort (only for float data)
- comb_sort
- counting_sort (only for integer data)
- cycle_sort
- gnome_sort
- heap_sort
- insertion_sort
- intro_sort
- merge_sort
- pigeonhole_sort (only for integer data)
- quick_sort
- radix_sort
- selection_sort
- stooge_sort
- strand_sort
- tree_sort
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-sorter-1.2.0.tar.gz
(13.5 kB
view details)
File details
Details for the file python-sorter-1.2.0.tar.gz
.
File metadata
- Download URL: python-sorter-1.2.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea72b656c901bb91f43923d96d4a2a2c4a3511c3ea27f033c23af64170160edd |
|
MD5 | 2a41ff01180576a77937b14d095407ae |
|
BLAKE2b-256 | 28320e680277272b817b18d0a5f83096eb9e52b422b09428eca0bf8d389c9447 |