摘要: #include<stdio.h> void swap(int a[],int low,int high){ int temp=a[low]; a[low]=a[high]; a[high]=temp; } int CountPivot(int a[],int low,int high){ int 阅读全文
posted @ 2023-07-17 17:59 冷风5997 阅读(37) 评论(0) 推荐(0)