Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add new MergeSort #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions src/test/java/com/abranhe/allalgorithms/sorting/MergeSortNew.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
class MergeSortNew
{
void merge(int arr[], int l, int m, int r)
{

int n1 = m - l + 1;
int n2 = r - m;


int L[] = new int [n1];
int R[] = new int [n2];


for (int i=0; i<n1; ++i)
L[i] = arr[l + i];
for (int j=0; j<n2; ++j)
R[j] = arr[m + 1+ j];





int i = 0, j = 0;


int k = l;
while (i < n1 && j < n2)
{
if (L[i] <= R[j])
{
arr[k] = L[i];
i++;
}
else
{
arr[k] = R[j];
j++;
}
k++;
}


while (i < n1)
{
arr[k] = L[i];
i++;
k++;
}


while (j < n2)
{
arr[k] = R[j];
j++;
k++;
}
}



void sort(int arr[], int l, int r)
{
if (l < r)
{

int m = (l+r)/2;


sort(arr, l, m);
sort(arr , m+1, r);


merge(arr, l, m, r);
}
}


static void printArray(int arr[])
{
int n = arr.length;
for (int i=0; i<n; ++i)
System.out.print(arr[i] + " ");
System.out.println();
}


public static void main(String args[])
{
int arr[] = {12, 11, 13, 5, 6, 7};

System.out.println("Given Array");
printArray(arr);

MergeSort ob = new MergeSort();
ob.sort(arr, 0, arr.length-1);

System.out.println("\nSorted array");
printArray(arr);
}
}
/* This code is contributed by Rajat Mishra */