Senin, 18 April 2011

Contoh Pemgrograman Buble Sort Dengan C++

#include
#include
#include

class buble{
static int bil[4];
public:
void buble_sort();
void tampil();
};

int buble::bil[4]={6,3,8,2};

void buble::tampil(){
for(int i=0;i<4 i="" o:p="">
               cout<
    cout<
}

void buble::buble_sort(){
int temp;
for(int j=0;j<3 j="" o:p="">
               for(int k=0;k<3 k="" o:p="">
                               if (bil[k]>bil[k+1]){
                               temp=bil[k];
                               bil[k]=bil[k+1];
                               bil[k+1]=temp;
                               }
               }

}

void main(){
buble x;
cout<<"Data sebelum diurutkan : "<
x.tampil();
x.buble_sort();
cout<<"Data setelah diurutkan : "<
x.tampil();
getch();

}

Tidak ada komentar:

Posting Komentar