-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquick-sort.ina
57 lines (50 loc) · 1.36 KB
/
quick-sort.ina
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
53
54
55
56
57
isi Math = {
floor: ffi('double floor(double)')
};
isi items = [5,3,7,6,2,9];
tulis("sebelum diurutkan : ");
untuk (isi i=0; i < items.panjang; i++){
tulis(items[i]);
}
fungsi swap(items, leftIndex, rightIndex){
isi temp = items[leftIndex];
items[leftIndex] = items[rightIndex];
items[rightIndex] = temp;
}
fungsi partition(items, left, right) {
isi pivot = items[Math.floor((right + left) / 2)],
i = left,
j = right;
ulang (i <= j) {
ulang (items[i] < pivot) {
i++;
}
ulang (items[j] > pivot) {
j--;
}
jika (i <= j) {
swap(items, i, j); //sawpping two elements
i++;
j--;
}
}
balik i;
}
fungsi quickSort(items, left, right) {
isi index;
jika (items.panjang > 1) {
index = partition(items, left, right); //index baliked from partition
jika (left < index - 1) { //more elements on the left side of the pivot
quickSort(items, left, index - 1);
}
jika (index < right) { //more elements on the right side of the pivot
quickSort(items, index, right);
}
}
balik items;
}
isi sortedArray = quickSort(items, 0, items.panjang - 1);
tulis("setelah diurutkan : ");
untuk (isi i=0; i < sortedArray.panjang; i++){
tulis(sortedArray[i]);
}