-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickSort.java
More file actions
42 lines (41 loc) · 851 Bytes
/
QuickSort.java
File metadata and controls
42 lines (41 loc) · 851 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
import java.util.*;
public class QuickSort {
private static void swap(int[] arr,int i,int j) {
int temp=arr[i];
arr[i]=arr[j];
arr[j]=temp;
}
private static int partition(int[] arr,int low,int high) {
int x;
int i=low-1;
x=arr[high];
for(int j=low;j<high;j++) {
if(x>=arr[j]) {
i++;
swap(arr,i,j);
}
}
swap(arr,i+1,high);
return i+1;
}
public static void sort(int[] arr,int low,int high) {
if(low<high) {
int pos=partition(arr,low,high);
sort(arr,low,pos-1);
sort(arr,pos+1,high);
}
}
public static void main(String[] args) {
int[] arr;
int n;
Scanner sc=new Scanner(System.in);
n=sc.nextInt();
arr=new int[n];
for(int i=0;i<n;i++) {
arr[i]=sc.nextInt();
}
sort(arr,0,n-1);
System.out.println(Arrays.toString(arr));
sc.close();
}
}