コード例 #1
0
arreglo = configuraciones.confE('QuickSort')

archivo = open('ordenadoEQuickSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    quickSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfE: ' + str(total) + '\n')
archivo.close()

#PARA LA CONFIGURACION F
arreglo = configuraciones.confF('QuickSort')

archivo = open('ordenadoFQuickSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    quickSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfF: ' + str(total) + '\n')
archivo.close()
コード例 #2
0
#PARA LA CONFIGURACION E
arreglo = configuraciones.confE('ShellSort')

archivo = open('ordenadoEShellSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    shellSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfE: ' + str(total) + '\n')
archivo.close()

#PARA LA CONFIGURACION F
arreglo = configuraciones.confF('ShellSort')

archivo = open('ordenadoFShellSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    shellSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfF: ' + str(total) + '\n')
archivo.close()
コード例 #3
0
#PARA LA CONFIGURACION E
arreglo = configuraciones.confE('RadixSort')

archivo = open('ordenadoERadixSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    radixsort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfE: ' + str(total) + '\n')
archivo.close()

#PARA LA CONFIGURACION F
arreglo = configuraciones.confF('RadixSort')

archivo = open('ordenadoFRadixSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    radixsort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfF: ' + str(total) + '\n')
archivo.close()
コード例 #4
0
#PARA LA CONFIGURACION E
arreglo = configuraciones.confE('HeapSort')

archivo = open('ordenadoEHeapSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    heapSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfE: ' + str(total) + '\n')
archivo.close()

#PARA LA CONFIGURACION F
arreglo = configuraciones.confF('HeapSort')

archivo = open('ordenadoFHeapSort.txt', 'a')
total = 0

for i in arreglo:
    start_time = time()
    heapSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfF: ' + str(total) + '\n')
archivo.close()
コード例 #5
0
# confE = configuraciones.confE('BubbleSort')
#
# archivo = open('ordenadoEBubleSort.txt', 'a')
# total = 0
#
# for i in confE:
#     start_time = time()
#     bubbleSort(i)
#     transcurrido = time() - start_time
#     archivo.write(str(i) + '\n')
#     total = transcurrido + total
#
# archivoTiempo.write('ConfE: ' + str(total) + '\n')
# archivo.close()

#PARA LA CONFIGURACION F

confF = configuraciones.confF('BubbleSort')

archivo = open('ordenadoFBubleSort.txt', 'a')
total = 0

for i in confF:
    start_time = time()
    bubbleSort(i)
    transcurrido = time() - start_time
    archivo.write(str(i) + '\n')
    total = transcurrido + total

archivoTiempo.write('ConfF: ' + str(total) + '\n')
archivo.close()