add bubble sort documentation
This commit is contained in:
9
doc/psuedo/bubblesort.txt
Normal file
9
doc/psuedo/bubblesort.txt
Normal 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
|
Reference in New Issue
Block a user