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>
88 lines
1.5 KiB
JavaScript
88 lines
1.5 KiB
JavaScript
/**
|
|
* Flashsort is a distribution sorting algorithm showing linear
|
|
* computational complexity O(n) for uniformly distributed
|
|
* data sets and relatively little additional memory requirement.
|
|
*
|
|
* Wikipedia: https://en.wikipedia.org/wiki/Flashsort
|
|
*/
|
|
|
|
export function flashSort(arr) {
|
|
let max = 0
|
|
let min = arr[0]
|
|
const n = arr.length
|
|
const m = ~~(0.45 * n)
|
|
const l = new Array(m)
|
|
|
|
for (let i = 1; i < n; ++i) {
|
|
if (arr[i] < min) {
|
|
min = arr[i]
|
|
}
|
|
if (arr[i] > arr[max]) {
|
|
max = i
|
|
}
|
|
}
|
|
|
|
if (min === arr[max]) {
|
|
return arr
|
|
}
|
|
|
|
const c1 = (m - 1) / (arr[max] - min)
|
|
|
|
for (let k = 0; k < m; k++) {
|
|
l[k] = 0
|
|
}
|
|
|
|
for (let j = 0; j < n; ++j) {
|
|
const k = ~~(c1 * (arr[j] - min))
|
|
++l[k]
|
|
}
|
|
|
|
for (let p = 1; p < m; ++p) {
|
|
l[p] = l[p] + l[p - 1]
|
|
}
|
|
|
|
let hold = arr[max]
|
|
arr[max] = arr[0]
|
|
arr[0] = hold
|
|
|
|
// permutation
|
|
let move = 0
|
|
let t
|
|
let flash
|
|
let j = 0
|
|
let k = m - 1
|
|
|
|
while (move < n - 1) {
|
|
while (j > l[k] - 1) {
|
|
++j
|
|
k = ~~(c1 * (arr[j] - min))
|
|
}
|
|
if (k < 0) break
|
|
flash = arr[j]
|
|
while (j !== l[k]) {
|
|
k = ~~(c1 * (flash - min))
|
|
hold = arr[(t = --l[k])]
|
|
arr[t] = flash
|
|
flash = hold
|
|
++move
|
|
}
|
|
}
|
|
|
|
// insertion
|
|
for (j = 1; j < n; j++) {
|
|
hold = arr[j]
|
|
let i = j - 1
|
|
while (i >= 0 && arr[i] > hold) {
|
|
arr[i + 1] = arr[i--]
|
|
}
|
|
arr[i + 1] = hold
|
|
}
|
|
return arr
|
|
}
|
|
|
|
/**
|
|
* Implementation of Flash Sort
|
|
*/
|
|
// const array = [3, 0, 2, 5, -1, 4, 1, -2]
|
|
// flashSort(array)
|