/*funcion merge*/ void merge(int *A,int n,int m); /*funcion mergesort*/ void mergesort_1(int *A,int n); /*rutina para medicion de tiempo de mergesort, entrega el resultado en [useg] del tipo long*/ long mergesort(int *A,int n); /*algoritmo mergesort que llama a funcion copiarreglo en el 75% del tiempo de ejecucion aproximadamente*/ void mergesort_2(int *parcial, int *final, int SIZE, int *A,int n);