Tìm kiếm

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

Code:


#include<iostream.h>
#include<iomanip.h>
#include<conio.h>
float a[100];
int n;
void QuickSort(float a[],int l,int r)
{
 int i,j;
 int x;
 i=l;
 j=r;
 x=a[(l+r)/2];
 do
  {
while (a[i]<x)i++;
while(a[j]>x)j--;
if(j<=j)
{
 if(i<j)
      {
int temp=a[i];
a[i]=a[j];
a[j]=temp;
}
i++;
j--;
 }
}
while(i<j);
if(l<j)QuickSort(a,l,j);
if(i<r)QuickSort(a,i,r);
}
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 QuickSort:"<<endl;
          cout<<endl;
QuickSort(a,1,n);
output(a,n);
}
getch();
 }

Read Users' Comments (0)

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