-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQuickSortString.java
53 lines (51 loc) · 1.25 KB
/
QuickSortString.java
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
import java.util.*;
class QuickSortString{
static void swap(String[] arr, int i, int j){
String temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
static int partition(String[] arr, int low, int high){
String pivot = arr[high];
int i = (low - 1);
for(int j = low; j <= high - 1; j++){
if ((arr[j].compareTo(pivot))<0) {
i++;
swap(arr, i, j);
}
}
swap(arr, i + 1, high);
return (i + 1);
}
static void quickSort(String[] arr, int low, int high){
if (low < high) {
int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}
static void printArray(String[] arr, int size){
for(int i = 0; i <= size; i++) {
if(i==size || i==0) {
System.out.print(arr[i]);
}
else {
System.out.print(arr[i] + " ,");
}
}
}
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
String[] arr=new String [50];
System.out.println("Enter the size of the string array: ");
int n=sc.nextInt();
System.out.println("Enter the String Elements : ");
for(int i=0;i<=n;i++) {
arr[i]=sc.nextLine();
}
quickSort(arr,0,n);
System.out.println("\nSorted array is:");
printArray(arr, n);
sc.close();
}
}