递归和非递归快排
【摘要】 #include<iostream>
#include<stack>
using namespace std;
//快排
int Partion(int *arr, int beg, int end)
{ if(arr==NULL) { exit(-1); } int tep = arr[beg]; while(beg<end) { wh...
#include<iostream>
#include<stack>
using namespace std;
//快排
int Partion(int *arr, int beg, int end)
{ if(arr==NULL) { exit(-1); } int tep = arr[beg]; while(beg<end) { while(beg<end&&tep<=arr[end]) { end--; } if(beg<end) { arr[beg] = arr[end]; beg++; } while(beg<end && tep>=arr[beg]) { beg++; } if(beg<end) { arr[end] = arr[beg]; end--; } } arr[beg]=tep; return beg;
}
void QuickSort(int *arr , int beg, int end)
{ if(arr==NULL) { return; } if(beg<end) { int mid = Partion(arr , beg , end); QuickSort(arr , beg , mid-1); QuickSort(arr , mid+1, end); }
}
//非递归快排,其实就用一个栈保存每次的Partion()的返回值,
void _QuickSort(int *arr , int beg, int end)
{ stack<int> s; if(beg<end) { int mid = Partion(arr , beg , end); { if(beg<mid-1) { s.push(beg); s.push(mid-1); } if(mid+1<end) { s.push(mid+1); s.push(end); } } } while(!s.empty()) { int q = s.top(); s.pop(); int p = s.top(); s.pop(); int mid = Partion(arr , p, q); if(p<mid-1) { s.push(p); s.push(mid-1); } if(mid+1<q) { s.push(mid+1); s.push(q); } }
}
int main()
{ int arr[] = {9,8,7,6,5,4,3,2,1,89,78,9999,8}; int len = sizeof(arr)/sizeof(arr[0]); _QuickSort(arr, 0 , len-1); for(int i=0;i<len;++i) { cout<<arr[i]<<" "; } cout<<endl; return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
文章来源: blog.csdn.net,作者:IM-STONE,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/doubleintfloat/article/details/52690105
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)