Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++vvv
Trang 1Thuật toán sắp xếp
bubble sort C++
#include<bits/stdc++.h> using namespace std; int main()
{
int a[10000],i,j,n;
cin>>n;
for(i=1;i<=n;i++)
{
cin>>a[i];
}
for(i=1;i<=n;i++)
for(j=1;j<=i-1;j++)
if(a[j]>=a[i])
swap(a[i],a[j]);/* doi vi tri */ for(i=1;i<=n;i++)
cout<<a[i]<<" ";
}