-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathradix-sort.js
37 lines (33 loc) · 972 Bytes
/
radix-sort.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const getNthDigit = (number, n) => {
number >>= n;
return number % 10;
};
const shouldStop = (array, dictionary) => {
return dictionary.hasOwnProperty(0) && array.length === dictionary[0].length;
};
const extractElements = dictionary => {
return Object.keys(dictionary).reduce((elements, key) => {
return dictionary[key] ? elements.concat(dictionary[key]) : elements;
}, []);
};
const radixSort = array => {
let index = 1;
while (true) {
const dictionary = array.reduce((dict, element) => {
const digit = getNthDigit(element, index);
const elements = dict[digit] || [];
dict[digit] = elements.concat(element);
return dict;
}, {});
const extractedElements = extractElements(dictionary);
array.length = 0;
array.push(...extractedElements);
if (shouldStop(array, dictionary)) {
break;
}
index++;
}
};
const array = [10, 21, 17, 34, 44, 11, 654, 123];
radixSort(array);
console.log(array);