forked from ddhira123/Algorithms-HacktoberFest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickSort.js
41 lines (38 loc) · 789 Bytes
/
quickSort.js
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
const swap = (items, leftIndex, rightIndex) => {
const temp = items[leftIndex]
items[leftIndex] = items[rightIndex]
items[rightIndex] = temp
}
const partition = (items, left, right) => {
let pivot = items[Math.floor((right + left) / 2)]
let i = left
let j = right
while (i <= j) {
while (items[i] < pivot) {
i++
}
while (items[j] > pivot) {
j--
}
if (i <= j) {
swap(items, i, j)
i++
j--
}
}
return i
}
const quickSort = (items, left, right) => {
let index
if (items.length > 1) {
index = partition(items, left, right)
if (left < index - 1) {
quickSort(items, left, index - 1)
}
if (index < right) {
quickSort(items, index, right)
}
}
return items
}
export default quickSort