-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort1.java
78 lines (74 loc) · 1.75 KB
/
sort1.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import java.util.*;
class sort1{
void sort(int arr[], int low, int high)
{
if (low < high)
{
int pi = partition(arr, low, high);
sort(arr, low, pi-1);
sort(arr, pi+1, high);
}
}
int partition(int arr[], int low, int high)
{
int pivot = arr[high];
int i = (low-1); // index of smaller element
for (int j=low; j<high; j++)
{
if (arr[j] <= pivot)
{
i++;
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
int temp = arr[i+1];
arr[i+1] = arr[high];
arr[high] = temp;
return i+1;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int i,j,ch;
System.out.println("Choose:\n 1. Bubble sort 2. Quick sort");
ch=in.nextInt();
switch(ch){
case 1:{
System.out.println("Enter number of elements: ");
int n= in.nextInt();
int a[]= new int[n];
System.out.println("Enter elements: ");
for(i=0;i<n;i++)
a[i]=in.nextInt();
for(i=0;i<n;i++){
for(j=0;j<n-i-1;j++)
{
if(a[j]>a[j+1])
{
int temp;
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
}break;
case 2:
{
System.out.println("Enter number of elements: ");
int n= in.nextInt();
int arr[]= new int[n];
System.out.println("Enter elements: ");
for(i=0;i<n;i++)
arr[i]=in.nextInt();
sort1 ob = new sort1();
ob.sort(arr, 0, n-1);
System.out.println("sorted array");
for (i=0; i<n; ++i)
System.out.print(arr[i]+" ");
}
break;
}
}
}