-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMergeSort.java
More file actions
92 lines (76 loc) · 1.34 KB
/
MergeSort.java
File metadata and controls
92 lines (76 loc) · 1.34 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//Merge Sort
import java.util.*;
public class MergeSort
{
void mergesort(int a[],int l,int h)
{
if(l<h)
{
int mid=(l+h)/2;
mergesort(a,l,mid);
mergesort(a,mid+1,h);
merge(a,l,mid,h);
}
}
void merge(int a[],int l,int mid,int h)
{
int n1=mid-l+1;
int n2=h-mid;
int L[]=new int[n1];
int R[]=new int[n2];
// copy Emelent to Temp array L[] and R[]
for(int i=0;i<n1;++i)
L[i]=a[l+i];
for(int j=0;j<n2;++j)
R[j]=a[mid+1+j];
// merge
int i=0,j=0,k=l;
while(i<n1 && j<n2)
{
if(L[i]<=R[j])
{
a[k]=L[i];
i++;
}
else
{
a[k]=R[j];
j++;
}
k++;
}
while(i<n1)
{
a[k]=L[i];
i++;
k++;
}
while(j < n2)
{
a[k]=R[j];
j++;
k++;
}
}
static void printArray(int a[])
{
int n=a.length;
for(int i=0;i<n;i++)
System.out.println(" "+a[i]+" ");
System.out.println();
}
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter the Size Of Array: ");
int n=sc.nextInt();
int a[]=new int[n];
System.out.println("Enter the Element U want to Sort: ");
for(int i=0;i<n;i++)
a[i]=sc.nextInt();
MergeSort m=new MergeSort();
m.mergesort(a,0,n-1);
System.out.println("Sorted Array: ");
printArray(a);
}
}