Contoh Program Bubble Sort
- ..
/* Program Sorting Buble Sort */
#include<iostream.h>
#include<conio.h>
void main()
{
int a[6],temp,i,j,k;
for(i=0;i<6;i++)
{
cout<<"a["<<i<<"] = ";
cin>>a[i];
}
cout<<endl;
for(i=0;i<5;i++)
{
for(j=5;j>0;j--)
{
if(a[j]<a[j-1])
{
temp=a[j];
a[j]=a[j-1];
a[j-1]=temp;
}
for(k=0;k<6;k++)
cout<<a[k]<<" ";
cout<<endl;
}
cout<<endl;
}
getch();
}
terima kasih postinganya berguna buat saya yang pemula..