forked from shakti1590/bubble-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickShort.java
More file actions
74 lines (46 loc) · 1023 Bytes
/
QuickShort.java
File metadata and controls
74 lines (46 loc) · 1023 Bytes
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package selfDsaPractice;
public class QuickShort {
public static void main(String[] args) {
int arr[] = {11,5,3,8,1,6,9};
quickShort(arr, 0, arr.length-1);
for(int i = 0; i<arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
static int partion(int [] arr,int l,int h) {
int pivot = arr[l];
int i = l;
int j = h;
while(i<j) {
while(arr[i]<=pivot) {
i++;
if(i == arr.length-1) {
break;
}
}
while(arr[j]>pivot) {
j--;
if(j == l) {
break;
}
}
if(i<j) {
swap(arr, i, j);
}
}
swap(arr, j, l);
return j;
}
static void quickShort(int arr[],int l,int h) {
if(l<h) {
int pivot = partion(arr, l, h);
quickShort(arr, l, pivot-1);
quickShort(arr, pivot+1, h);
}
}
static void swap(int arr[],int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}