06.05.2013 Views

presentación-PDF

presentación-PDF

presentación-PDF

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Mejora Ordenación Burbuja<br />

public void OrdBurbuja2()<br />

{<br />

boolean noOrdenados = true;<br />

int pasada = 0;<br />

while ((noOrdenados) && (pasada < A.length -1))<br />

{<br />

noOrdenados = false;<br />

for (int j=0; j < (A.length-pasada-1); j++)<br />

if (A[j] > A[j+1])<br />

{ intercambiar(j,j+1);<br />

noOrdenados = true;<br />

}<br />

pasada ++;<br />

}<br />

}

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!