void insert_sort(int *a,int n) { if(n==1) return insert_sort(a,n-1) int temp=a[n-1] for( 数据结构 7 K 98 次下载 2014-01-22