void partition(int arr[],int low,int high){ int mid; if(low<high){ mid=(low+high)/2; partition(arr,low,mid); partition(arr,mid+1,high); // How does the recursion work here? mergeSort(arr,low,mid,high); } }
partition
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)