JAVA/알고리즘

정렬알고리즘 - 버블정렬

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
for(int i = money.length; i>0; i--){
 
    for(int j=0;j<i-1;j++){
 
     if(money[j]>money[j+1]){
 
      temp=money[j];
 
      money[j]=money[j+1];
 
      money[j+1]=temp;
 
     }
 
    }
 
   }
cs


반응형