题目:http://acm.hdu.edu.cn/showproblem.php?pid=1157
大意:排序,取中间数。
PS:1.自己实现了下快排函数,也可以使用#include<algorithm>下的sort(a,a+n);函数,默认升序,若要降序or结构体排序可以增加第三个参数,声明排序规则。
2.在写这个快排的时候出现了很多问题,花了比较多的时间,对自己很不满意。
3.在这个while循环里写自减时,应该是j=high+1(分(low~p-1)和(p+1~high)),若不进行high+1,则需要分为(low~p)和(p+1~high)区间,不然有一个数没有遍历到,而产生错误,血的教训。。
while(i<j && a[--j]>t); a[i] = a[j];
//cout<<"j0="<<j<<endl;
while(i<j && a[++i]<t); a[j] = a[i];
4.希望自己以后在面试时或者其他时候遇到这样的问题不会出现同样的错误
#include<iostream> using namespace std; int q_sort_partition(int a[],int low,int high){
//cout<<"low="<<low<<" high="<<high<<endl;
int t = a[low];
int i = low;
int j = high;
while(i<j){
while(i<j && a[--j]>t); a[i] = a[j];
//cout<<"j0="<<j<<endl;
while(i<j && a[++i]<t); a[j] = a[i];
//cout<<"i0="<<i<<endl;
}
a[i] = t;
//cout<<"i="<<i<<endl;
return i;
} void q_sort(int a[],int low,int high){
if(low<high){
int p = q_sort_partition(a,low,high);
//cout<<"p="<<p<<endl;
q_sort(a,low,p);
q_sort(a,p+,high);
}
return ;
} int main(){
int i,n;
int a[];
while(cin>>n){
for(i=;i<n;i++)
cin>>a[i];
q_sort(a,,n);
cout<<a[n/]<<endl;
}
return ;
}