Tìm kiếm

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

Code:


#include<iostream.h>
#include<iomanip.h>
#include<conio.h>
float a[100];
int n;
void InsertionSort(float a[],int n)
{
float temp;
for(int i=2;i<=n;i++)
  {
temp=a[i];
int vt=i;
while ((a[vt-1]>temp)&&(vt>1))
{
  a[vt]=a[vt-1];
  vt=vt-1;
}
a[vt]=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 insertion sort:"<<endl;
cout<<endl;
InsertionSort(a,n);
output(a,n);
}
getch();
}

Read Users' Comments (0)

0 Response to "Code Sắp xếp dùng phương pháp insertion sort 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