SA-MP Forums Archive
Ordenar nъmeros. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Ordenar nъmeros. (/showthread.php?tid=551082)



Ordenar nъmeros. - Swedky - 16.12.2014

Bueno, me gustarнa conocer un mйtodo rбpido para ordenar nъmeros de mayor a menor.


Respuesta: Ordenar nъmeros. - OTACON - 16.12.2014

esto ya lo preguntaste..
https://sampforum.blast.hk/showthread.php?tid=531218

http://es.wikipedia.org/wiki/Ordenamiento_de_burbuja

pawn Код:
bubbleSort(array[], length)
{
    new i,j;
    for(i=0;i<length;i++)
    {
        for(j=0;j<i;j++)
        {
            if(array[i]>array[j])
            {
                new temp=array[i];
                array[i]=array[j];
                array[j]=temp;
            }
        }
    }



Respuesta: Ordenar nъmeros. - Swedky - 16.12.2014

Sн o sн deben ser varias iteraciones?


Respuesta: Ordenar nъmeros. - DesingMyCry - 17.12.2014

Otacon, como se usa esa funciуn?