The powerful package designed for sorting.
Project description
sorting-algorithms🎢
Theory analysis and code implementation of common array sorting algorithms.
📍 start from galley
First, You need to click the fork
button to create your own sub repository, or use the following command to synchronize the repository to the local folder:
git clone https://github.com/linjing-lab/sorting-algorithms.git
Second, I have put different implemented versions of various sorting algorithms in the galley
folder, everyone can import it with the underlying command:
import galley as ge
For example, If I use the bubble
sorting algorithm to sort a real data in reverse, use the following commands:
import random
data = [random.randint(0, 100) for _ in range(10000)]
ge.bubble.flag(data, reverse=True)
print(data)
Lastly, many algorithms are in-place sorting, and a few are out-place, you should pay attention to it during the study, so that you can distinguish between print(data)
and print(method)
. I mainly use if... else...
to implement the reverse order of sorting algorithms in gallery and the partition of some algorithms.
📊 sorting complexity
Algorithm | Time Complexity | Space Complexity | ||
---|---|---|---|---|
--- | Best | Average | Worst | Worst |
Quicksort | $\Omega(n \log(n))$ | $\Theta(n \log(n))$ | $O(n^2)$ | $O(\log(n))$ |
Mergesort | $\Omega(n \log(n))$ | $\Theta(n \log(n))$ | $O(n \log(n))$ | $O(n)$ |
Timsort | $\Omega(n)$ | $\Theta(n \log(n))$ | $O(n \log(n))$ | $O(n)$ |
Heapsort | $\Omega(n \log(n))$ | $\Theta(n \log(n))$ | $O(n \log(n))$ | $O(1)$ |
Bubble Sort | $\Omega(n)$ | $\Theta(n^2)$ | $O(n^2)$ | $O(1)$ |
Insertion Sort | $\Omega(n)$ | $\Theta(n^2)$ | $O(n^2)$ | $O(1)$ |
Selection Sort | $\Omega(n^2)$ | $\Theta(n^2)$ | $O(n^2)$ | $O(1)$ |
Tree Sort | $\Omega(n \log(n))$ | $\Theta(n \log(n))$ | $O(n^2)$ | $O(n)$ |
Shell Sort | $\Omega(n \log (n))$ | $\Theta(n(\log (n))^2)$ | $O(n(\log (n))^2)$ | $O(1)$ |
Bucket Sort | $\Omega(n + k)$ | $\Theta(n + k)$ | $O(n^2)$ | $O(n)$ |
Radix Sort | $\Omega(nk)$ | $\Theta(nk)$ | $O(nk)$ | $O(n+k)$ |
Counting Sort | $\Omega(n + k)$ | $\Theta(n + k)$ | $O(n + k)$ | $O(k)$ |
Cubesort | $\Omega(n)$ | $\Theta(n \log(n))$ | $O(n \log(n))$ | $O(n)$ |
🙋 test description
I test the performance of the sorting algorithm after adding the keyword sorting in the test_key file (The utils file stores the most core function for keyword sorting), test the time accumulation of the sorting algorithm with respect to the large data set in the test_time file, and test whether the reverse parameter of the sorting algorithms is designed correctly in the test_reverse file, including the robustness of these.
The design of reverse sorting of all methods is completely correct, and the design of keyword sorting is feasible, which is consistent with the usage of sorted parameter officially released by Python.
The example of keyword sorting are underlying:
data = [('Alex', 100, 90, 98, 95), ('Jack', 97, 88, 98, 92), ('Peter', 92, 95, 92, 96), ('Li', 97, 89, 98, 92)]
insertion_sort(data, key=lambda x: (x[1], x[2]), reverse=False)
# sorted(data, key=lambda x: (x[1], x[2]), reverse=False)
print(data)
'''
reverse=False:
[('Peter', 92, 95, 92, 96), ('Jack', 97, 88, 98, 92), ('Li', 97, 89, 98, 92), ('Alex', 100, 90, 98, 95)]
reverse=True:
[('Alex', 100, 90, 98, 95), ('Li', 97, 89, 98, 92), ('Jack', 97, 88, 98, 92), ('Peter', 92, 95, 92, 96)]
'''
you can see more 5 methods in keyword_sorting file.
🎒 pip install
As you can see, I create a core function to drive keyword sorting just by opening up an array with the size of k (k = nums of keyword), and the type of sorting implemented by Python officially released is Timsort, which is more complicated than the other algorithms in my released packages in the future.
!pip install sortingx # in jupyter
pip install sortingx # in cmd
sortingx can do whatever list.sort()
do, and support more methods and more data types.
explain:
- sortingx-1.1.0 is the first version aligned with the
list.sort()
usage method. - sortingx-1.1.1 is the first stable version accelerated with typing_extensions.
- sortingx-1.1.2 is the first stable version that has a return value and extends the iterable data types.
- sortingx-1.1.3 is the version that complete the typing of local variables and align with
sorted()
usage method. - sortingx-1.2.0 is the end version of sorting series, which optimize the kernel of generate.
- sortingx-1.2.1 is the portable version that comparison is faster than ever, the generate is more portable.
By the way, I didn't complete all the iterative data types, in order to develop a more targeted scenario. If you are interested in other iterative data types, please add them in the convert
function of the _utils.py
file, for example: bytes, bytearray, range, zip. If you need to deal with dict_keys
, dict_values
, dict_items
, please use list()
to convert the variables of these data types before using any method of sortingx.
- sortingx-1.2.2 is the package that support
range
,zip
,dict_keys
,dict_values
,dict_items
additionally, you can choose what suitable data you want to input. - sortingx-1.2.3 is the package that corrected the situation where elements are equal in
compare
, support more input data, like data as[['Jack', (98, 100)], ['Bob', (98, 99)], ['Jessi', (98, 97)]]
and key aslambda x: x[1][0]
. - sortingx-1.3.0 is the final version that fully aligned with the
sorted
', reduces redundant data exchanging. like data as[('Alex', 97, 90, 98, 95), ('Jack', 97, 88, 98, 92), ('Peter', 92, 95, 92, 96), ('Li', 97, 89, 98, 92)]
and key askey=lambda x: x[1]
. - sortingx-1.3.1 is the improved version from v1.3.0, and pre-operations from
_utils
are more conise to reduce shallow copy in Runtime. - sortingx-1.3.2 is the optimized version from v1.3.1, and shrink the returns of calling intrinsic function named
__len__
to get length of__iterable
.
refer to this for downloaded info.
LICENSE
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
Built Distribution
File details
Details for the file sortingx-1.3.2.tar.gz
.
File metadata
- Download URL: sortingx-1.3.2.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.8.2 requests/2.28.2 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9249b36fda183e16bd7c68585473c5cbadd2f6bf4810de3c66787b1bc3d98d5 |
|
MD5 | dd0ba36f9c4ce8b2ffdbfb5eaf79d545 |
|
BLAKE2b-256 | 674650c69bbc769a794501472e2bcba837d13168e3d809fd9ee49ea1cc93a4ce |
File details
Details for the file sortingx-1.3.2-py3-none-any.whl
.
File metadata
- Download URL: sortingx-1.3.2-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.8.2 requests/2.28.2 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b085638175d2475098d608aab6e33b74a91afe757aff628a9701011277da6d2 |
|
MD5 | c6919ec2c346edaaf95dfef8e83e7ffb |
|
BLAKE2b-256 | ec9b4da1503c2a8a05d5e8e43cd7fbdc6e911bb85bbdca13bdedcc58600b800f |