Radix sort
It is a sorting algorithm that is used to sort element. Radix sort is the method that many people begin to use when alphabetizing a large list of name or numeric number.Specifically ,
The list of names is first sorted according to the first letter of each name. That is, the names are arranged in 26 classes,where the first class consist of those name that begin with “A�, the second class consists of those name that begin with “B�,and so on.During the second pass, each class is alphabetized according to the second letter of the name.And so on.
The time complexity of Radix sort is O(kn) and space complexity of Radix sort is O(k+n).the running time of Radix appears to be better than Quick Sort for a wide range of input numbers.