No Description

sorting.py 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 quickSort(lista):
  21. #definan el algoritmo de ordenamiento quicksort
  22. return lista
  23. def insertionSort(lista):
  24. i = 1
  25. while i < len(lista):
  26. if lista[i - 1] > lista[i]:
  27. j = i - 1
  28. while j >= 0 and lista[j] > lista[j + 1]:
  29. lista[j], lista[j + 1] = lista[j + 1], lista[j]
  30. j -= 1
  31. i += 1
  32. return lista
  33. def shellSort(lista):
  34. gap = len(lista) / 2
  35. while gap >= 1:
  36. i = gap
  37. while i < len(lista):
  38. if lista[i - gap] > lista[i]:
  39. j = i - gap
  40. while j >= 0 and lista[j] > lista[j + gap]:
  41. lista[j], lista[j + gap] = lista[j + gap], lista[j]
  42. j -= gap
  43. i += gap
  44. gap /= 2
  45. #if isSorted(lista):
  46. #print "Lista is sorted"
  47. #else:
  48. #print "Lista is not sorted"
  49. return lista
  50. maxValor=1000 #define el valor maximo de los elementos de la lista
  51. largoLista=1000 #define el largo de las listas a ordenar
  52. veces=100 #define las veces que se va a hacer el ordenamiento
  53. acumulaMerge=0 #variable para acumular el tiempo de ejecucion del mergesort
  54. acumulaHeap=0 #variable para acumular el tiempo de ejecucion del heapsort
  55. acumulaQuick=0 #variable para acumular el tiempo de ejecucion del quicksort
  56. acumulaShell=0 #variable para acumular el tiempo de ejecucion del shellsort
  57. for i in range(veces):
  58. lista = [randint(0,maxValor) for r in range(largoLista)] #creamos una lista con valores al azar
  59. # creamos copias de la lista para cada algoritmo
  60. listaMerge = lista[:]
  61. listaHeap = lista[:]
  62. listaQuick = lista[:]
  63. listaShell = lista[:]
  64. t1 = time.clock() #seteamos el tiempo al empezar
  65. mergeSort(listaMerge) #ejecutamos el algoritmo mergeSort
  66. acumulaMerge+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  67. t1 = time.clock() #seteamos el tiempo al empezar
  68. heapSort(listaHeap) #ejecutamos el algoritmo heapSort
  69. acumulaHeap+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  70. t1 = time.clock() #seteamos el tiempo al empezar
  71. quickSort(listaQuick) #ejecutamos el algoritmo quickSort
  72. acumulaQuick+=time.clock()-t1 #acumulamos el tiempo de ejecucion
  73. t1 = time.clock() #seteamos el tiempo al empezar
  74. shellSort(listaShell) #ejecutamos el algoritmo shellSort
  75. acumulaShell+=time.clock()-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"