摘要: 用快速排序写该题 代码: #include<stdio.h>#include<math.h> int a[102] = {0}; void Quicksort(int left, int right){ int i,j,t,temp,k; if(left > right) return; temp 阅读全文
posted @ 2017-04-11 17:25 Been_You1997 阅读(88) 评论(0) 推荐(0) 编辑