-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathburbuja.py
More file actions
292 lines (244 loc) · 6.19 KB
/
Copy pathburbuja.py
File metadata and controls
292 lines (244 loc) · 6.19 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
def Burbuja(lista):
for anter in range(len(lista)-1,0,-1):
for i in range(anter):
if lista[i]>lista[i+1]:
temp=lista[i+1]
lista[i+1]=lista[i]
lista[i]=temp
print("Burbuja: "+str(lista))
def Burbuja_desc(lista):
for anter in range(len(lista)-1,0,-1):
for i in range(anter):
if lista[i]<lista[i+1]:
temp=lista[i+1]
lista[i+1]=lista[i]
lista[i]=temp
print("Burbuja descendente: "+str(lista))
def burbujaDirecc(lista):
izq = 0
der = len(lista)-1
ultimo = len(lista)-1
while True:
entra = False
for i in range(izq, der):
if lista[i]>lista[i + 1]:
aux = lista[i]
lista[i] = lista[i + 1]
lista[i + 1] = aux
entra=True
for j in range(der-1, izq-1,-1):
if lista[j]>lista[j + 1]:
aux = lista[j]
lista[j] = lista[j + 1]
lista[j + 1] = aux
entra = True
if (entra==False):
break
print("Burbuja bidir: "+str(lista))
def burbujaDirecc_desc(lista):
izq = 0
der = len(lista)-1
ultimo = len(lista)-1
while True:
entra = False
for i in range(izq, der):
if lista[i]<lista[i + 1]:
aux = lista[i]
lista[i] = lista[i + 1]
lista[i + 1] = aux
entra=True
for j in range(der-1, izq-1,-1):
if lista[j]<lista[j + 1]:
aux = lista[j]
lista[j] = lista[j + 1]
lista[j + 1] = aux
entra = True
if (entra==False):
break
print("Burbuja bidir descendente: "+str(lista))
def Seleccion(lista):
for i in range(len(lista)-1,0,-1):
pos=0
for j in range(1,i+1):
if lista[j] >lista[pos]:
pos=j
print(lista)
temp=lista[i]
lista[i]=lista[pos]
lista[pos]=temp
print("Seleccion: "+str(lista))
def Seleccion_desc(lista):
for i in range(len(lista)-1,0,-1):
pos=0
for j in range(1,i+1):
if lista[j] <lista[pos]:
pos=j
temp=lista[i]
lista[i]=lista[pos]
lista[pos]=temp
print("Seleccion descendente: "+str(lista))
def Insercion(lista):
for i in range(1,len(lista)):
actual = lista[i]
j = i
while j>0 and lista[j-1]>actual:
lista[j]=lista[j-1]
j = j-1
lista[j]=actual
print("Insercion: "+str(lista))
def Insercion_desc(lista):
for i in range(1,len(lista)):
actual = lista[i]
j = i
while j>0 and lista[j-1]<actual:
lista[j]=lista[j-1]
j = j-1
lista[j]=actual
print("Insercion descendente: "+str(lista))
def Quicksort(lista,izq,der):
i=izq
j=der
x=lista[(izq + der)//2]
while( i <= j ):
while lista[i]<x and j<=der:
i=i+1
while x<lista[j] and j>izq:
j=j-1
if i<=j:
aux = lista[i]; lista[i] = lista[j]; lista[j] = aux;
i=i+1; j=j-1;
if izq < j:
Quicksort( lista, izq, j );
if i < der:
Quicksort( lista, i, der );
def imprimeLista():
print("Quicksort: "+str(lista))
def Quicksort_desc(lista,izq,der):
i=izq
j=der
x=lista[(izq + der)//2]
while( i <= j ):
while lista[i]>x and j>=der:
i=i+1
while x>lista[j] and j<izq:
j=j-1
if i<=j:
aux = lista[i]; lista[i] = lista[j]; lista[j] = aux;
i=i+1; j=j-1;
if izq < j:
Quicksort_desc( lista, izq, j );
if i < der:
Quicksort_desc( lista, i, der );
def imprimeLista_desc():
print("Quicksort descendente: "+str(lista))
def Shell(lista):
mitad = len(lista) // 2
while mitad > 0:
for p in range (mitad):
reducir(lista, p, mitad)
mitad = mitad // 2
print("Shell: "+str(lista))
def reducir(lista, inicio, salto):
for i in range(inicio + salto, len(lista), salto):
valor = lista[i]
posicion = i
while posicion >= salto and lista[posicion - salto ] > valor:
lista[posicion] = lista[posicion - salto]
posicion = posicion - salto
lista[posicion] = valor
def Shell_desc(lista):
mitad = len(lista) // 2
while mitad > 0:
for p in range (mitad):
reducir_desc(lista, p, mitad)
mitad = mitad // 2
print("Shell descendente: "+str(lista))
def reducir_desc(lista, inicio, salto):
for i in range(inicio + salto, len(lista), salto):
valor = lista[i]
posicion = i
while posicion >= salto and lista[posicion - salto ] < valor:
lista[posicion] = lista[posicion - salto]
posicion = posicion - salto
lista[posicion] = valor
def Gnome(lista):
i=1
while i<len(lista):
if lista[i]>=lista[i-1]:
i=i+1
else:
temp=lista[i-1]
lista[i-1]=lista[i]
lista[i]=temp
if i>1:
i=i-1
print("Gnome: "+str(lista))
def Gnome_desc(lista):
i=1
while i<len(lista):
if lista[i]<=lista[i-1]:
i=i+1
else:
temp=lista[i-1]
lista[i-1]=lista[i]
lista[i]=temp
if i>1:
i=i-1
print("Gnome descendente: "+str(lista))
def Peine(lista):
def siGap(gap):
gap=(gap*10)//13
if gap<1:
return 1
return gap
n=len(lista)
gap=n
flag=True
while(gap!=1 or flag==True):
gap=siGap(gap)
flag=False
for i in range(0,n-gap):
if lista[i]>lista[i+gap]:
aux=lista[i]
lista[i]=lista[i+gap]
lista[i+gap]=aux
flag=True
print("Peine: "+str(lista))
def Peine_desc(lista):
def siGap(gap):
gap=(gap*10)//13
if gap<1:
return 1
return gap
n=len(lista)
gap=n
flag=True
while(gap!=1 or flag==True):
gap=siGap(gap)
flag=False
for i in range(0,n-gap):
if lista[i]<lista[i+gap]:
aux=lista[i]
lista[i]=lista[i+gap]
lista[i+gap]=aux
flag=True
print("Peine descendente: "+str(lista))
lista=[7,10,4,22,9]
Burbuja(lista)
Burbuja_desc(lista)
burbujaDirecc(lista)
burbujaDirecc_desc(lista)
Seleccion(lista)
Seleccion_desc(lista)
Insercion(lista)
Insercion_desc(lista)
Quicksort(lista,0,len(lista)-1)
imprimeLista()
Quicksort_desc(lista,0,len(lista)-1)
imprimeLista_desc()
Shell(lista)
Shell_desc(lista)
Gnome(lista)
Gnome_desc(lista)
Peine(lista)
Peine_desc(lista)