No Description

sorting.py 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. # -*- coding: utf-8 -*-
  2. """
  3. Carlos J Corrada Bravo
  4. Este programa calcula el promedio de tiempo de ejecución de cuatro algoritmos de ordenamiento
  5. La variable maxValor define el valor maximo de los elementos de la lista
  6. La variable largoLista define el largo de las listas a ordenar
  7. La variable veces define las veces que se va a hacer el ordenamiento
  8. Al final se imprimen los promedios de cada algortimo
  9. """
  10. from random import randint
  11. import time
  12. def isSorted(lista):
  13. return lista == sorted(lista)
  14. def mergeSort(lista):
  15. #definan el algoritmo de ordenamiento mergesort
  16. return lista
  17. def heapSort(lista):
  18. #definan el algoritmo de ordenamiento heapsort
  19. return lista
  20. def partition(lista, low, high):
  21. pivot = lista[high]
  22. i = low - 1
  23. for j in range(low, high):
  24. if (lista[j] < pivot):
  25. i += 1
  26. lista[i], lista[j] = lista[j], lista[i]
  27. lista[i+1], lista[high] = lista[high], lista[i+1]
  28. return i + 1
  29. def quickSortRec(lista, low, high):
  30. if (low < high):
  31. p = partition(lista, low, high)
  32. quickSortRec(lista, low, p - 1)
  33. quickSortRec(lista, p + 1, high)
  34. return lista
  35. def quickSort(lista):
  36. #definan el algoritmo de ordenamiento quicksort
  37. return quickSortRec(lista, 0, len(lista) - 1)
  38. def insertionSort(lista):
  39. i = 1
  40. while i < len(lista):
  41. if lista[i - 1] > lista[i]:
  42. j = i - 1
  43. while j >= 0 and lista[j] > lista[j + 1]:
  44. lista[j], lista[j + 1] = lista[j + 1], lista[j]
  45. j -= 1
  46. i += 1
  47. return lista
  48. def shellSort(lista):
  49. gap = len(lista) / 2
  50. while gap >= 1:
  51. i = gap
  52. while i < len(lista):
  53. if lista[i - gap] > lista[i]:
  54. j = i - gap
  55. while j >= 0 and lista[j] > lista[j + gap]:
  56. lista[j], lista[j + gap] = lista[j + gap], lista[j]
  57. j -= gap
  58. i += gap
  59. gap /= 2
  60. #if isSorted(lista):
  61. #print "Lista is sorted"
  62. #else:
  63. #print "Lista is not sorted"
  64. return lista
  65. maxValor=1000 #define el valor maximo de los elementos de la lista
  66. largoLista=1000 #define el largo de las listas a ordenar
  67. veces=100 #define las veces que se va a hacer el ordenamiento
  68. acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
  69. acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
  70. acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
  71. acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
  72. for i in range(veces):
  73. lista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
  74. # creamos copias de la lista para cada algoritmo
  75. listaMerge = lista[:]
  76. listaHeap = lista[:]
  77. listaQuick = lista[:]
  78. listaShell = lista[:]
  79. t1 = time.clock() #seteamos el tiempo al empezar
  80. mergeSort(listaMerge) #ejecutamos el algoritmo mergeSort
  81. acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  82. t1 = time.clock() #seteamos el tiempo al empezar
  83. heapSort(listaHeap) #ejecutamos el algoritmo heapSort
  84. acumulaHeap+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  85. t1 = time.clock() #seteamos el tiempo al empezar
  86. quickSort(listaQuick) #ejecutamos el algoritmo quickSort
  87. acumulaQuick+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  88. t1 = time.clock() #seteamos el tiempo al empezar
  89. shellSort(listaShell) #ejecutamos el algoritmo shellSort
  90. acumulaShell+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  91. #imprimos los resultados
  92. print "Promedio de tiempo de ejecucion de "+ str(veces) +" listas de largo " + str(largoLista)
  93. print "MergeSort " + str(acumulaMerge/veces) + " segundos"
  94. print "HeapSort " + str(acumulaHeap/veces) + " segundos"
  95. print "QuickSort " + str(acumulaQuick/veces) + " segundos"
  96. print "ShellSort " + str(acumulaShell/veces) + " segundos"