Sorting with Linus
This package contains a few sorting methods which you might find useful. Check below for proper usage but here is a short list of all of them:
- bubble sort
- insertion sort
- quick sort
- selection sort
Have fun with these methods.
bubble sort
alist = [54, 26, 93, 17, 77, 31, 44, 55, 20]
print(bubbleSort(alist))
An inefficient but easy to implement sorting algorithm.
selection sort
alist = [54, 26, 93, 17, 77, 31, 44, 55, 20]
print(selectionSort(alist))
An inefficient but easy to implement sorting algorithm.
insertion sort
alist = [54, 26, 93, 17, 77, 31, 44, 55, 20]
print(insertionSort(alist))
An inefficient but easy to implement sorting algorithm.
quick sort
alist = [54,26,93,17,77,31,44,55,20]
quick_sort(alist)
print(alist)
An efficient but hard to implement sorting algorithm. Use this one!
Release files for sorting-with-linus 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| sorting_with_linus-0.1.tar.gz | 2.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| sorting_with_linus-0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 5.6 kB
Release files / sorting_with_linus-0.1.tar.gz
| Download URL | sorting_with_linus-0.1.tar.gz |
|---|---|
| Size | 2.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
fd434719375d6c797c8917b586c1126eb7a73a1e1cb523c3ccfd78535a6bbfe2
|
|
BLAKE2b-256 checksum How to use checksums |
03e8256acae3c30b8f55d5de73b7ad7d60e07d0852635a74e96390a19b71d633
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
|
Release files / sorting_with_linus-0.1-py3-none-any.whl
| Download URL | sorting_with_linus-0.1-py3-none-any.whl |
|---|---|
| Size | 3.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
84dc3db2d7296f81e6483b18ba5f3d8dcb0d63a4648231f663751e17bf99f25f
|
|
BLAKE2b-256 checksum How to use checksums |
5abdecd6aa140e51fe558f0860a2b8766dff51e6704bcc937d7361f334c03f35
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
|