See More

public class mergeSort { private static void sort(int nums[],int left,int right){ int mid = (left+right)/2; if(left