void mergesort(int a[],int i,int j) { int m; if(i!=j) { m=(i+j)/2; mergesort(a,i,m); mergesort(a,m+1,j); merge(a,i,j,m); } }