mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-07 02:05:08 +08:00
Added the correct and stable version of count sort. Changed function declaration to ES6 style.
This commit is contained in:
@ -8,31 +8,38 @@
|
|||||||
* Animated Visual: https://www.cs.usfca.edu/~galles/visualization/CountingSort.html
|
* Animated Visual: https://www.cs.usfca.edu/~galles/visualization/CountingSort.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function countingSort (arr, min, max) {
|
const countingSort = (arr, min, max) => {
|
||||||
let i
|
// Create an auxiliary resultant array
|
||||||
let z = 0
|
const res = []
|
||||||
|
// Create the freq array
|
||||||
const count = []
|
const count = []
|
||||||
|
let len = max - min + 1
|
||||||
|
|
||||||
for (i = min; i <= max; i++) {
|
for (let i = 0; i < len; i++) {
|
||||||
count[i] = 0
|
count[i] = 0
|
||||||
}
|
}
|
||||||
|
// Populate the freq array
|
||||||
for (i = 0; i < arr.length; i++) {
|
for (let i = 0; i < arr.length; i++) {
|
||||||
count[arr[i]]++
|
count[arr[i] - min] += 1
|
||||||
}
|
}
|
||||||
|
// Create a prefix sum array out of the freq array
|
||||||
for (i = min; i <= max; i++) {
|
count[0] -= 1
|
||||||
while (count[i]-- > 0) {
|
for (let i = 1; i < count.length; i++) {
|
||||||
arr[z++] = i
|
count[i] += count[i - 1]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
// Populate the result array using the prefix sum array
|
||||||
|
for (let i = arr.length - 1; i >= 0; i--) {
|
||||||
|
res[count[arr[i] - min]] = arr[i]
|
||||||
|
count[arr[i] - min]--
|
||||||
|
}
|
||||||
|
// Copy the result back to back to original array
|
||||||
|
arr = [...res]
|
||||||
return arr
|
return arr
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implementation of Counting Sort
|
* Implementation of Counting Sort
|
||||||
*/
|
*/
|
||||||
const array = [3, 0, 2, 5, 4, 1]
|
const array = [3, 0, 2, 5, 4, 1]
|
||||||
// Before Sort
|
// Before Sort
|
||||||
console.log('\n- Before Sort | Implementation of Counting Sort -')
|
console.log('\n- Before Sort | Implementation of Counting Sort -')
|
||||||
|
Reference in New Issue
Block a user