@@ -64,9 +64,9 @@ for i in range(veces):
# mergeSort(mergelista) #ejecutamos el algoritmo mergeSort
# acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
- t1 = time.time() #seteamos el tiempo al empezar
+ t1 = time.process_time() #seteamos el tiempo al empezar
heapSort(heaplista) #ejecutamos el algoritmo heapSort
- acumulaHeap += time.time() - t1 #acumulamos el tiempo de ejecucion
+ acumulaHeap += time.process_time() - t1 #acumulamos el tiempo de ejecucion
# t1 = time.clock() #seteamos el tiempo al empezar
# quickSort(quicklista) #ejecutamos el algoritmo quickSort