Tìm kiếm

Code Sắp xếp dùng phương pháp Bubblesort trong C++

Code:


 #include<iostream.h>
#include<iomanip.h>
#include<conio.h>
float a[100];
int n;
void BubbleSort(float a[],int n)
{
 int temp;
 for(int i=1;i<n;i++)
 for(int j=n;j>i;j--)
 if(a[j]<a[j-1])
  {
temp=a[j];
a[j]=a[j-1];
a[j-1]=temp;
  }
}
void input(float a[],int n)
{
 int i;
 for (i = 1; i <= n; i++)
  {
cout<<"a["<<i<<"]= ";
cin>>a[i];
  }
}
void output(float a[],int n)
{
  int i;
  for (i = 1; i <= n; i++)
cout<<a[i]<<"  ";
}
void main()
{
cout<<"Nhap n : ";cin>>n;
if(n>0)
{
cout<<"Day ban dau: ";
input(a,n);
cout<<endl;
cout<<"\nSap xep theo PP Bubble sort:"<<endl;
cout<<endl;
BubbleSort(a,n);
output(a,n);
}
getch();
 }

Read Users' Comments (0)

0 Response to "Code Sắp xếp dùng phương pháp Bubblesort trong C++"

Đăng nhận xét

Support

Liên hệ DMTuan-Uneti
Mọi thông tin góp ý các bạn liên hệ với mình ! Mail:
  1. manhtuan.leo@gmail.com
  2. manhtuan.itvp@gmail.com

Y!M: manhtuan.it92