add bubble sort documentation

This commit is contained in:
2018-11-11 16:49:23 -03:00
parent 2419f57c8c
commit 9a29347198
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
cuentaDeElementos := n
repetir
haCambiado := falso
disminuir cuentaDeElementos
repetir con indice desde 1 a cuentaDeElementos
if (elemento en indice) > (elemento en (indice + 1))
intercambiar (elemento en indice) con (elemento en (indice + 1))
haCambiado := falso
hasta haCambiado = verdad