Nav apraksta

sorting.py 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. #Juan F. Hernandez
  74. # Para este codigo se utilizo referencia de stackoverflow
  75. #define arreglos a utilizar
  76. lowerArray = []
  77. equalArray = []
  78. maxArray = []
  79. #organiza los elementos utilizando el pivote para ponerlos en orden
  80. if len(lista) > 1:
  81. pivot = lista[0]
  82. for x in lista:
  83. if x < pivot:
  84. lowerArray.append(x)
  85. elif x == pivot:
  86. equalArray.append(x)
  87. elif x > pivot:
  88. maxArray.append(x)
  89. #concatena arreglos en orden
  90. return quickSort(lowerArray)+equalArray+quickSort(maxArray)
  91. else:
  92. return lista
  93. def shellSort(lista):
  94. #definan el algoritmo de ordenamiento shellsort
  95. #Luis E. Ortiz Cotto
  96. #Este codigo tiene su base de GeeksforGeeks
  97. distance = len(lista) / 2 #Coge la distancia de la mitad de la lista
  98. while distance > 0:
  99. for i in range(distance, len(lista)): #Empieza a ordenar haciendo un insertion sort para la distancia
  100. tmp = lista[i] #Guarda temporeramente el valor que esta en la posicion i que se va a cambiar
  101. j = i #Tiene el valor que va al momento
  102. #Empieza a ordernar los elementos hasta que llegue a la localizacion donde esta el valor temporero
  103. while j >= distance and lista[j - distance] > tmp:
  104. lista[j] = lista[j - distance]
  105. j -= distance
  106. #Poner el valor temporero en el su posicion correcta
  107. lista[j] = tmp
  108. distance /= 2 #Coge la mitad otra vez de la que ya esta
  109. return lista
  110. maxValor=1000 #define el valor maximo de los elementos de la lista
  111. largoLista=1000 #define el largo de las listas a ordenar
  112. veces=100 #define las veces que se va a hacer el ordenamiento
  113. acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
  114. acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
  115. acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
  116. acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
  117. for i in range(veces):
  118. mergelista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
  119. heaplista=list(mergelista)
  120. quicklista=list(mergelista)
  121. searchlista=list(mergelista)
  122. t1 = time.clock() #seteamos el tiempo al empezar
  123. mergeSort(mergelista) #ejecutamos el algoritmo mergeSort
  124. acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  125. t1 = time.clock() #seteamos el tiempo al empezar
  126. heapSort(heaplista) #ejecutamos el algoritmo heapSort
  127. acumulaHeap+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  128. t1 = time.clock() #seteamos el tiempo al empezar
  129. quickSort(quicklista) #ejecutamos el algoritmo quickSort
  130. acumulaQuick+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  131. t1 = time.clock() #seteamos el tiempo al empezar
  132. shellSort(searchlista) #ejecutamos el algoritmo shellSort
  133. acumulaShell+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  134. #imprimos los resultados
  135. print "Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista)
  136. print "MergeSort " + str(acumulaMerge/veces) + " segundos"
  137. print "HeapSort " + str(acumulaHeap/veces) + " segundos"
  138. print "QuickSort " + str(acumulaQuick/veces) + " segundos"
  139. print "ShellSort " + str(acumulaShell/veces) + " segundos"