摘要: 源程序: #include <stdio.h>#define N 5 //快速排序 int pass(int a[],int x,int y){ int temp=a[x]; int i=x+1; int j=y; int stemp; while(1) { while(a[j]>temp) j-- 阅读全文
posted @ 2019-11-28 10:54 bobo哥 阅读(221) 评论(0) 推荐(1)