#include using namespace std; void merge(int *A, int p, int q, int r){ int n1 = q - p + 1; int n2 = r - q; int L[n1]; int R[n2]; for(int i = 0; i