CoboCards App FAQ & Wünsche Feedback
Sprache: Deutsch Sprache
Kostenlos registrieren  Login

Zu dieser Karteikarte gibt es einen kompletten Satz an Karteikarten. Kostenlos!

Alle Oberthemen / Informatik / Algorithmen & Datenstrukturen / ADS
7
Bubble Sort
public void bubbleSort(int [] a){
        for (int i = 0; i < a.length - 1; i){
              for (int j = 0; j < a.length - 1; j
){
                    if (a[j] > a[j + 1]){
                        swap (a, j, j +1);
                    }
               }
         }
}


boolean swapped;
do {
     swapped = false;
     for (int i = 0; i < a.length-1; i++){
           if (a [j] > a[j +1]){
               swapped = true;
           }
} while(swapped);
Neuer Kommentar
Karteninfo:
Autor: hristiana86
Oberthema: Informatik
Thema: Algorithmen & Datenstrukturen
Schule / Uni: HS
Ort: Mannheim
Veröffentlicht: 14.06.2010

Abbrechen
E-Mail

Passwort

Login    

Passwort vergessen?
Deutsch  English