您的位置 首页 编程

用VC++类完成快速排序(并输出进程)

主函数i

&&&&&&&&&&&&&&&&&&&&&&&&&&&&主函数&&&&&&&&&&&&&&&&&&&&&&
#include
#include
#include
#include “WangQi.h”
using namespace std;
#define MAX 100
void main(){
SeqList L;
int num;
cout<<"请输入要排序的元素个数:"<cin>>num;
cout<<"请输入要排序的元素:"<for(int i=1;i<=num;i++)
cin>>L.r[i];
L.length=num;
//输出排序前的次序表
L.output(&L,1,L.length,-1);
L.quicksort(&L,1,L.length);
L.output(&L,1,L.length,-2);
}
&&&&&&&&&&&&&&&&&&&含有类界说的头文件&&&&&&&&&&&&&&&&&&&&&&&&&
#include
using namespacestd;
#define MAX 100
class SeqList{
public:
int r[MAX+1];
int length;

void output(SeqList *L,int low, int high,int pivotloc){
int i;

if(pivotloc==-1||pivotloc==-2){
if(pivotloc==-1)
cout<<"初始状况:{"<< ;
else cout<<"排序成果:{"<< ;
for(i=low;i<=high;i++)
cout<r[i]<< ;
cout<<"}";
}else {
cout<<"区分成果:{"<< ;
for(i=low;i cout<r[i]<< ;
cout<<"}"<r[pivotloc]<<"{";
for(i=pivotloc+1;i<=high;i++)
cout<r[i]<< ;
cout<<"}";
}
cout<<<}

int partition(SeqList *L,int low,int high){
int pivotkey;
int temp1=low,temp2=high;
L->r[0]=L->r[low];
pivotkey=L->r[low];
while (low while (lowr[high]>=pivotkey)
–high;
L->r[low]=L->r[high];
while(lowr[low]<=pivotkey)
++low;
L->r[high]=L->r[low];
}
L->r[low]=L->r[0];
output(L,temp1,temp2,low);
return low;
}

void quicksort(SeqList *L,int low,int high){
int pivotloc;
if(low pivotloc=partition(L,low,high);
if(low quicksort(L,low,pivotloc-1);
if(high>pivotloc+1)
quicksort(L,pivotloc+1,high);
}
};

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/fangan/biancheng/255075.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部