摘要: #一.排序 ###1.快速排序代码 #include<stdio.h> #define Max 100 //储存的最大值 int Sort(int A[],int head,int end) { int Standard = A[head]; //标准值为最左边的数 while (head < en 阅读全文
posted @ 2022-03-27 16:43 彭乐祥 阅读(38) 评论(0) 推荐(0) 编辑