forked from TheAlgorithms/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBogoSort.js
More file actions
45 lines (39 loc) · 934 Bytes
/
BogoSort.js
File metadata and controls
45 lines (39 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* Checks whether the given array is sorted in ascending order.
*/
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
* using the unbiased Fisher–Yates algorithm.
*/
function shuffle(array) {
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.
*
* For more information see:
* https://en.wikipedia.org/wiki/Bogosort
*/
export function bogoSort(items) {
while (!isSorted(items)) {
shuffle(items)
}
return items
}