mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-04 15:39:42 +08:00

* chore: Switch to Node 20 + Vitest * chore: migrate to vitest mock functions * chore: code style (switch to prettier) * test: re-enable long-running test Seems the switch to Node 20 and Vitest has vastly improved the code's and / or the test's runtime! see #1193 * chore: code style * chore: fix failing tests * Updated Documentation in README.md * Update contribution guidelines to state usage of Prettier * fix: set prettier printWidth back to 80 * chore: apply updated code style automatically * fix: set prettier line endings to lf again * chore: apply updated code style automatically --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
38 lines
778 B
JavaScript
38 lines
778 B
JavaScript
/*
|
|
https://en.wikipedia.org/wiki/Pigeonhole_sort
|
|
|
|
*Pigeonhole sorting is a sorting algorithm that is suitable
|
|
* for sorting lists of elements where the number of elements
|
|
* (n) and the length of the range of possible key values (N)
|
|
* are approximately the same.
|
|
*/
|
|
export function pigeonHoleSort(arr) {
|
|
let min = arr[0]
|
|
let max = arr[0]
|
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
if (arr[i] > max) {
|
|
max = arr[i]
|
|
}
|
|
if (arr[i] < min) {
|
|
min = arr[i]
|
|
}
|
|
}
|
|
|
|
const range = max - min + 1
|
|
const pigeonhole = Array(range).fill(0)
|
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
pigeonhole[arr[i] - min]++
|
|
}
|
|
|
|
let index = 0
|
|
|
|
for (let j = 0; j < range; j++) {
|
|
while (pigeonhole[j]-- > 0) {
|
|
arr[index++] = j + min
|
|
}
|
|
}
|
|
return arr
|
|
}
|