FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/Sorts/CombSort.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
/
CombSort.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (47 loc) · 1.49 KB
Breadcrumbs
JavaScript
/
Sorts
/
CombSort.js
Copy path
File metadata and controls
52 lines (47 loc) · 1.49 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* Comb sort improves on bubble sort.
*
* The basic idea is to eliminate turtles, or small values
* near the end of the list, since in a bubble sort these slow the sorting
* down tremendously. Rabbits, large values around the beginning of the list,
* do not pose a problem in bubble sort.
*
* In bubble sort, when any two elements are compared, they always have a
* gap (distance from each other) of 1. The basic idea of comb sort is
* that the gap can be much more than 1. The inner loop of bubble sort,
* which does the actual swap, is modified such that gap between swapped
* elements goes down (for each iteration of outer loop) in steps of
* a "shrink factor" k: [ n/k, n/k2, n/k3, ..., 1 ].
*
* Wikipedia: https://en.wikipedia.org/wiki/Comb_sort
*/
/**
* combSort returns an array of numbers sorted in increasing order.
*
*
@param
{
number[]
} list The array of numbers to sort.
*
@return
{
number[]
} The array of numbers sorted in increasing order.
*/
function
combSort
(
list
)
{
if
(
list
.
length
===
0
)
{
return
list
}
const
shrink
=
1.3
let
gap
=
list
.
length
let
isSwapped
=
true
let
i
=
0
while
(
gap
>
1
||
isSwapped
)
{
// Update the gap value for a next comb
gap
=
parseInt
(
parseFloat
(
gap
)
/
shrink
,
10
)
isSwapped
=
false
i
=
0
while
(
gap
+
i
<
list
.
length
)
{
if
(
list
[
i
]
>
list
[
i
+
gap
]
)
{
;
[
list
[
i
]
,
list
[
i
+
gap
]
]
=
[
list
[
i
+
gap
]
,
list
[
i
]
]
isSwapped
=
true
}
i
+=
1
}
}
return
list
}
export
{
combSort
}
Back
|
FazBrowse Home
|
New Git URL