philipperemy / Sorting-Algorithms

Efficient implementations of common sorting algorithms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sorting Algorithms
____________________

Dynamic Sort
____________________
Linear complexity : 2n + m (assuming N is the size of the array, and M the maximum element)
Requires :
- Integers
- Maximum of the array is not "too big"

For this sort to be interesting :

2n + m < n log(n)
m < n log(n) - 2 n

I.E : n = 500k, n = 300k

About

Efficient implementations of common sorting algorithms


Languages

Language:Java 100.0%