Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amari-calipso/staticsort

a distributive sorting algorithm with low time complexity
https://github.com/amari-calipso/staticsort

algorithm distribution-sort distribution-sorting python python3 sorting sorting-algorithm sorting-algorithms

Last synced: 28 days ago
JSON representation

a distributive sorting algorithm with low time complexity

Awesome Lists containing this project

README

        

# staticSort
time complexity:

best case = O(n)

average case = O(n) + s

where s is best approximated like this and is a number between n and n log n:

![image](https://github.com/amari-calipso/staticSort/assets/68780017/1563800e-b189-4282-a84d-5df7b80494f0)

worst case = O(n log n)

space complexity = O(n)