No Description

sorting.py 3.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. """
  2. Carlos J Corrada Bravo
  3. Este programa calcula el promedio de tiempo de ejecución de cuatro algoritmos de ordenamiento
  4. La variable maxValor define el valor maximo de los elementos de la lista
  5. La variable largoLista define el largo de las listas a ordenar
  6. La variable veces define las veces que se va a hacer el ordenamiento
  7. Al final se imprimen los promedios de cada algortimo
  8. """
  9. from random import randint
  10. import time
  11. def mergeSort(lista):
  12. #definan el algoritmo de ordenamiento mergesort
  13. return lista
  14. def heapSort(lista):
  15. #definan el algoritmo de ordenamiento heapsort
  16. return lista
  17. #Se le da credito al programador de la funcion al final del codigo
  18. def quickSort(lista):
  19. #definan el algoritmo de ordenamiento quicksort
  20. return lista
  21. def shellSort(lista):
  22. # Subarrays are sorted according to intervals
  23. # After each set of subarrays is sorted, interval value is updated and process repeats
  24. # Function stops once iteration with interval = 1 has executed
  25. # print(lista)
  26. interval = len(lista) // 2
  27. while interval > 0:
  28. # Process repeats for each value between 1 -> interval
  29. for i in range(0, interval):
  30. # Process repeats as long as the current value being considered is greater than the value to its left
  31. # Being greater than the value to its left means that it is not in the correct location
  32. j = i
  33. while j + interval < len(lista):
  34. if lista[j] > lista[j + interval]:
  35. # Swapping values so that smaller value is to the left
  36. temp = lista[j]
  37. lista[j] = lista[j + interval]
  38. lista[j + interval] = temp
  39. # print(lista)
  40. n = j
  41. # Continue comparing value that was swapped left to other values to the left to make sure it is placed in the correct location
  42. while n - interval >= 0 and lista[n] < lista[n - interval]:
  43. # Swapping values so that smaller value is to the left
  44. temp = lista[n]
  45. lista[n] = lista[n - interval]
  46. lista[n - interval] = temp
  47. n -= interval
  48. # print(lista)
  49. # Update index to continue comparison with the next value in the sub array
  50. j += interval
  51. interval //= 2
  52. # print(lista)
  53. return lista
  54. maxValor=1000 #define el valor maximo de los elementos de la lista
  55. largoLista=1000 #define el largo de las listas a ordenar
  56. veces=100 #define las veces que se va a hacer el ordenamiento
  57. acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
  58. acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
  59. acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
  60. acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
  61. for i in range(veces):
  62. lista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
  63. # t1 = time.clock() #seteamos el tiempo al empezar
  64. # mergeSort(lista) #ejecutamos el algoritmo mergeSort
  65. # acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  66. # t1 = time.clock() #seteamos el tiempo al empezar
  67. # heapSort(lista) #ejecutamos el algoritmo heapSort
  68. # acumulaHeap+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  69. #
  70. # t1 = time.clock() #seteamos el tiempo al empezar
  71. # quickSort(lista) #ejecutamos el algoritmo quickSort
  72. # acumulaQuick+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  73. t1 = time.perf_counter() #seteamos el tiempo al empezar
  74. shellSort(lista) #ejecutamos el algoritmo shellSort
  75. acumulaShell+=time.perf_counter()-t1 #acumulamos el tiempo de ejecucion
  76. #imprimos los resultados
  77. print ("Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista))
  78. # print "MergeSort " + str(acumulaMerge/veces) + " segundos"
  79. # print "HeapSort " + str(acumulaHeap/veces) + " segundos"
  80. # print "QuickSort " + str(acumulaQuick/veces) + " segundos"
  81. print ("ShellSort " + str(acumulaShell/veces) + " segundos")