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>
29 lines
571 B
JavaScript
29 lines
571 B
JavaScript
/*
|
|
* Gnome sort is a sort algorithm that moving an element to its proper place is accomplished by a series of swap
|
|
* more information: https://en.wikipedia.org/wiki/Gnome_sort
|
|
*
|
|
*/
|
|
export function gnomeSort(items) {
|
|
if (items.length <= 1) {
|
|
return
|
|
}
|
|
|
|
let i = 1
|
|
|
|
while (i < items.length) {
|
|
if (items[i - 1] <= items[i]) {
|
|
i++
|
|
} else {
|
|
;[items[i], items[i - 1]] = [items[i - 1], items[i]]
|
|
|
|
i = Math.max(1, i - 1)
|
|
}
|
|
}
|
|
return items
|
|
}
|
|
|
|
// Implementation of gnomeSort
|
|
|
|
// const ar = [5, 6, 7, 8, 1, 2, 12, 14]
|
|
// gnomeSort(ar)
|