Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Bucket Sort

Algorithm type: Sorting algorithm
Can work in-place: No
Stable: Yes
Time complexity: O(K + n); K ≙ number of occupied buckets

Pseudocode

function sort(a: List)
   buckets: 
end function

© Marc Auberer 2020