-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort.js
50 lines (40 loc) · 939 Bytes
/
sort.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
42
43
44
45
46
47
48
49
50
// Quick Sort
const swap = (items, firstIndex, secondIndex) => {
const temp = items[firstIndex];
items[firstIndex] = items[secondIndex];
items[secondIndex] = 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 = 0;
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;
};
const items = [4, 2, 6, 5, 3, 9];
console.log(quickSort(items, 0, items.length - 1));