摘要:
typedef int ElementType; void Quick_sort(ElementType A[], int N) { Quicksort(A, 0, N-1); } void Quicksort(ElementType A[], int left, int right) { if(right-left+1 pivot); i... 阅读全文
posted @ 2019-04-26 14:47
yangzixiongh
阅读(117)
评论(0)
推荐(0)