FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/Sorts/BogoSort.js at master · TheAlgorithms/JavaScript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
TheAlgorithms
/
JavaScript
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
5.8k
Star
34.2k
Code
Issues
21
Pull requests
192
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
Sorts
/
BogoSort.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (36 loc) · 811 Bytes
Breadcrumbs
JavaScript
/
Sorts
/
BogoSort.js
Copy path
File metadata and controls
38 lines (36 loc) · 811 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/**
* 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.
*/
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
}
}
/**
* 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
}
Back
|
FazBrowse Home
|
New Git URL