No Description

sorting.py 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. """
  2. Carlos J Corrada Bravo
  3. Este programa calcula el promedio de tiempo de ejecucion 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 heapq import merge
  10. from random import randint
  11. import time
  12. def mergeSort(lista):
  13. #definan el algoritmo de ordenamiento mergesort
  14. # Carla Ramos Bezares
  15. # Para realizar este código leí las explicaciones e implementaciones que ofrecen
  16. # GeeksforGeeks y Progamiz
  17. # check if the array has more than one element
  18. if len(lista) > 1:
  19. # divide the array in two halves
  20. middle = len(lista)//2
  21. leftHalf = lista[:middle]
  22. rightHalf = lista[middle:]
  23. mergeSort(leftHalf)
  24. mergeSort(rightHalf)
  25. # declare pointers
  26. i = j = k = 0
  27. # using our "smaller" arrays, place elements in the correct position of our array
  28. while i < len(leftHalf) and j < len(rightHalf):
  29. if leftHalf[i] < rightHalf[j]:
  30. lista[k] = leftHalf[i]
  31. i = i + 1
  32. else:
  33. lista[k] = rightHalf[j]
  34. j = j + 1
  35. k = k + 1
  36. # continue updating array grabbing any elements that were left
  37. while i < len(leftHalf):
  38. lista[k] = leftHalf[i]
  39. i = i + 1
  40. k = k + 1
  41. while j < len(rightHalf):
  42. lista[k] = rightHalf[j]
  43. j = j + 1
  44. k = k + 1
  45. return lista
  46. def heapSort(lista):
  47. #definan el algoritmo de ordenamiento heapsort
  48. #Andrea V. Nieves
  49. #function def
  50. def heapify(lista, n, i):
  51. biggest = i
  52. left = 2*i + 1
  53. right = 2*i + 2
  54. if left < n and lista[left] > lista[i]:
  55. biggest = left
  56. else:
  57. biggest = i
  58. if right< n and lista[right] > lista[biggest]:
  59. biggest = right
  60. if biggest != i:
  61. lista[i], lista[biggest] = lista[biggest], lista[i]
  62. heapify(lista,n,biggest)
  63. #actual call
  64. n = len(lista)
  65. for i in range(n // 2 - 1, -1, -1):
  66. heapify(lista, n, i)
  67. for i in range(n - 1, 0, -1):
  68. lista[i], lista[0] = lista[0], lista[i]
  69. heapify(lista, i, 0)
  70. return lista
  71. def quickSort(lista):
  72. #definan el algoritmo de ordenamiento quicksort
  73. return lista
  74. def shellSort(lista):
  75. #definan el algoritmo de ordenamiento shellsort
  76. #Luis E. Ortiz Cotto
  77. #Este codigo tiene su base de GeeksforGeeks
  78. distance = len(lista) / 2 #Coge la distancia de la mitad de la lista
  79. while distance > 0:
  80. for i in range(distance, len(lista)): #Empieza a ordenar haciendo un insertion sort para la distancia
  81. tmp = lista[i] #Guarda temporeramente el valor que esta en la posicion i que se va a cambiar
  82. j = i #Tiene el valor que va al momento
  83. #Empieza a ordernar los elementos hasta que llegue a la localizacion donde esta el valor temporero
  84. while j >= distance and lista[j - distance] > tmp:
  85. lista[j] = lista[j - distance]
  86. j -= distance
  87. #Poner el valor temporero en el su posicion correcta
  88. lista[j] = tmp
  89. distance /= 2 #Coge la mitad otra vez de la que ya esta
  90. return lista
  91. maxValor=1000 #define el valor maximo de los elementos de la lista
  92. largoLista=1000 #define el largo de las listas a ordenar
  93. veces=100 #define las veces que se va a hacer el ordenamiento
  94. acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
  95. acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
  96. acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
  97. acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
  98. for i in range(veces):
  99. mergelista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
  100. heaplista=list(mergelista)
  101. quicklista=list(mergelista)
  102. searchlista=list(mergelista)
  103. t1 = time.clock() #seteamos el tiempo al empezar
  104. mergeSort(mergelista) #ejecutamos el algoritmo mergeSort
  105. acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  106. t1 = time.clock() #seteamos el tiempo al empezar
  107. heapSort(heaplista) #ejecutamos el algoritmo heapSort
  108. acumulaHeap+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  109. t1 = time.clock() #seteamos el tiempo al empezar
  110. quickSort(quicklista) #ejecutamos el algoritmo quickSort
  111. acumulaQuick+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  112. t1 = time.clock() #seteamos el tiempo al empezar
  113. shellSort(searchlista) #ejecutamos el algoritmo shellSort
  114. acumulaShell+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  115. #imprimos los resultados
  116. print "Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista)
  117. print "MergeSort " + str(acumulaMerge/veces) + " segundos"
  118. print "HeapSort " + str(acumulaHeap/veces) + " segundos"
  119. print "QuickSort " + str(acumulaQuick/veces) + " segundos"
  120. print "ShellSort " + str(acumulaShell/veces) + " segundos"