C++ 中快排的遞歸和非遞歸實現。本站提示廣大學習愛好者:(C++ 中快排的遞歸和非遞歸實現)文章只能為提供參考,不一定能成為您想要的結果。以下是C++ 中快排的遞歸和非遞歸實現正文
投稿:lqh
這篇文章主要介紹了C++ 中快排的遞歸和非遞歸實現的相關資料,需要的朋友可以參考下快排的遞歸
void quickSort1(int* root,int low,int high) { int pat=root[low]; if(low<high) { int i=low,j=high; while(i<j) { while(i<j&&root[j]>pat) j--; root[i]=root[j]; while(i<j&&root[i]<pat) i++; root[j]=root[i]; } root[i]=pat; quickSort1(root,low,i-1); quickSort1(root,i+1,high); } }
快排的非遞歸
int partion(int* root,int low,int high) { int part=root[low]; while(low<high) { while(low<high&&root[high]>part) high--; root[low]=root[high]; while(low<high&&root[low]<part) low++; root[high]=root[low]; } root[low]=part; return low; } void quickSort2(int* root,int low,int high) { stack<int> st; int k; if(low<high) { st.push(low); st.push(high); while(!st.empty()) { int j=st.top();st.pop(); int i=st.top();st.pop(); k=partion(root,i,j); if(i<k-1) { st.push(i); st.push(k-1); } if(k+1<j) { st.push(k+1); st.push(j); } } } } int main() { int a[8]={4,2,6,7,9,5,1,3}; quickSort1(a,0,7); //quickSort2(a,0,7); int i; for(i=0;i<8;i++) cout<<a[i]<<" "; cout<<endl; getchar(); return 0; }
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!