FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Javascript_shuffle_issue_fixed by KrishnaVipul14 · Pull Request #1898 · TheAlgorithms/JavaScript · GitHub

Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .js  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
25 changes: 16 additions & 9 deletions Sorts/BogoSort.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,43 @@
*/
export function isSorted(array) {
const length = array.length

for (let i = 0; i < length - 1; i++) {
if (array[i] > array[i + 1]) {
return false
}
}

return true
}

/**
* Shuffles the given array randomly in place.
* Shuffles the given array randomly in place
* using the unbiased Fisher–Yates algorithm.
*/
function shuffle(array) {
for (let i = array.length - 1; i; i--) {
const m = Math.floor(Math.random() * i)
const n = array[i - 1]
array[i - 1] = array[m]
array[m] = n
for (let i = array.length - 1; i > 0; i--) {
// Select random index from the inclusive range [0, i]
const j = Math.floor(Math.random() * (i + 1))

// Swap elements
;[array[i], array[j]] = [array[j], array[i]]
}
}

/**
* Implementation of the bogosort algorithm.
*
* This sorting algorithm randomly rearranges the array until it is sorted.
* This sorting algorithm randomly rearranges the array
* until it is sorted.
*
* For more information see: https://en.wikipedia.org/wiki/Bogosort
* For more information see:
* https://en.wikipedia.org/wiki/Bogosort
*/
export function bogoSort(items) {
while (!isSorted(items)) {
shuffle(items)
}

return items
}
}

Back | FazBrowse Home | New Git URL