摘要: #include<stdio.h> int a[101],n; void quicksort(int left,int right){ int i,j,t,temp; if(left>right) return; temp=a[left]; i=left; j=right; while(i!=j){ 阅读全文
posted @ 2021-12-04 22:49 弈星 阅读(27) 评论(0) 推荐(0)