No Description

sorting.py 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. return lista
  49. def quickSort(lista):
  50. #definan el algoritmo de ordenamiento quicksort
  51. return lista
  52. def shellSort(lista):
  53. #definan el algoritmo de ordenamiento shellsort
  54. return lista
  55. maxValor=1000 #define el valor maximo de los elementos de la lista
  56. largoLista=1000 #define el largo de las listas a ordenar
  57. veces=100 #define las veces que se va a hacer el ordenamiento
  58. acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
  59. acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
  60. acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
  61. acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
  62. for i in range(veces):
  63. mergelista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
  64. heaplista=list(mergelista)
  65. quicklista=list(mergelista)
  66. searchlista=list(mergelista)
  67. t1 = time.clock() #seteamos el tiempo al empezar
  68. mergeSort(mergelista) #ejecutamos el algoritmo mergeSort
  69. acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  70. t1 = time.clock() #seteamos el tiempo al empezar
  71. heapSort(heaplista) #ejecutamos el algoritmo heapSort
  72. acumulaHeap+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  73. t1 = time.clock() #seteamos el tiempo al empezar
  74. quickSort(quicklista) #ejecutamos el algoritmo quickSort
  75. acumulaQuick+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  76. t1 = time.clock() #seteamos el tiempo al empezar
  77. shellSort(searchlista) #ejecutamos el algoritmo shellSort
  78. acumulaShell+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  79. #imprimos los resultados
  80. print "Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista)
  81. print "MergeSort " + str(acumulaMerge/veces) + " segundos"
  82. print "HeapSort " + str(acumulaHeap/veces) + " segundos"
  83. print "QuickSort " + str(acumulaQuick/veces) + " segundos"
  84. print "ShellSort " + str(acumulaShell/veces) + " segundos"