-
Notifications
You must be signed in to change notification settings - Fork 0
/
complejidad_algoritmica4.py
85 lines (61 loc) · 2.18 KB
/
complejidad_algoritmica4.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import math
import time
class Complejidad_algoritmica:
def __init__(self, n):
self.n = n
def constante(self):
return 1
def logaritmica(self):
return math.log10(self.n)
def lineal(self):
return self.n
def log_lineal(self):
return self.n * math.log10(self.n)
def polinomial(self):
return self.n**2
def exponencial(self):
return 2**self.n
def main():
nums = [1, 10, 100, 1000, 10000]
for n in nums:
complejidad = Complejidad_algoritmica(n)
print('n es igual a: {}'.format(n))
principio = time.time()
print(
f'El resultado de complejidad constante para n igual a {n} es: ', complejidad.constante())
fin = time.time()
tiempo = fin - principio
print(f'has tardado {tiempo} segundos\n')
principio = time.time()
print(
f'El resultado de complejidad logaritmica para n igual a {n} es: ', complejidad.logaritmica())
fin = time.time()
tiempo = fin - principio
print(f'has tardado {tiempo} segundos\n')
principio = time.time()
print(
f'El resultado de complejidad lineal para n igual a {n} es: ', complejidad.lineal())
fin = time.time()
tiempo = fin - principio
print(f'has tardado {tiempo} segundos\n')
principio = time.time()
print(
f'El resultado de complejidad logaritmica lineal para n igual a {n} es: ', complejidad.log_lineal())
fin = time.time()
tiempo = fin - principio
print(f'has tardado {tiempo} segundos\n')
principio = time.time()
print(
f'El resultado de complejidad polinomial para n igual a {n} es: ', complejidad.polinomial())
fin = time.time()
tiempo = fin - principio
print(f'has tardado {tiempo} segundos\n')
principio = time.time()
print(
f'El resultado de complejidad exponencial para n igual a {n} es: ', complejidad.exponencial())
fin = time.time()
tiempo = fin - principio
print(f'has tardado {tiempo} segundos\n')
print('\n\n')
if __name__ == '__main__':
main()