Mehrdimensionales Array sortieren

Tuts4you

Erfahrenes Mitglied
Hallo Leute!
Bräuchte mal wieder eure Hilfe!

Ich hab ein Array "complex" mit folgenden Werten:
PHP:
double complex[][] = 
{    {3,4}, 
     {4,5},
     {5,6},
     {6,7},
     {6,5},
     {4,3},
     {0,5}    };

Wie kann ich dieses Array jetzt sortieren, damit es so aussieht:
PHP:
{0,5}
{3,4},
{4,3},
{4,5},
{5,6},
{6,5},
{6,7},


Danke für eure Hilfe!

Michael :)
 
Hallo Leute!
Bräuchte mal wieder eure Hilfe!

Ich hab ein Array "complex" mit folgenden Werten:
PHP:
double complex[][] = 
{    {3,4}, 
     {4,5},
     {5,6},
     {6,7},
     {6,5},
     {4,3},
     {0,5}    };

Wie kann ich dieses Array jetzt sortieren, damit es so aussieht:
PHP:
{0,5}
{3,4},
{4,3},
{4,5},
{5,6},
{6,5},
{6,7},


Danke für eure Hilfe!

Michael :)

schon mal da geschaut :) - musst es halt no bissl anpassen
http://de.wikipedia.org/wiki/Bubblesort

PHP:
function bubblesort($array) 
{
  $anzahl = count($array);
  for($i = 0; $i < $anzahl - 1; $i++) 
  {
    for($j = 0; $j <= $anzahl - $i - 2; $j++) 
    {
      if($array[$j] > $array[$j+1]) 
      {
        $a = $array[$j];
        $array[$j] = $array[$j+1];
        $array[$j+1] = $a;
      }
    }
  }
  return $array;
}
 
Zuletzt bearbeitet:
danke, hab die "Bubble-Sort" Variante angschaut --> Problem war, ich musst gar nicht ein mehrdimensionales Array sortieren sondern nur ein eindimensionales

PHP:
Arrrays.sort(value)

sag ich nur *zwinker*

aber trotzdem Danke!

Ev. kannst mir bei meinem Häufigkeitsproblem helfen?

lg Michael
 
Zurück