Output I get isCode:#include <iostream> using namespace std; void mergeSort(int a[], int low, int high); void merge (int a[], int low1, int high1, int low2, int high2); int main() { int sort[10]={6, 5, 8, 2, 12, 21, 11, 15, 25, 32}; mergeSort(sort,0,9); for(int i =0; i<10; i++) { cout << sort[i] << endl; } return 0; } void mergeSort(int a[], int low, int high) { if (low >=high) return; int mid = (low+high)/2; mergeSort(a, low, mid); mergeSort(a, mid+1, high); merge(a, low, mid, mid+1, high); } void merge(int a[], int low1, int high1, int low2, int high2) { int t, i1, i2; int *temp; i1 = low1; i2 = low2; t = 0; while (i1 <= high1 && i2 <= high2) { if (a[i1] < a[i2]) temp[t++] = a[i1++] ; else temp[t++] = a[i2++] ; } while (i1 <= high1) temp[t++] = a[i1++] ; while (i2 <= high2) temp[t++] = a[i2++] ; for (t = low1; t <= high2; t++) { a[t] = temp[t - low1] ; } }
11
11
11
11
11
11
15
21
25
32
![]()



LinkBack URL
About LinkBacks



