摘要: //Author: Hao #include<iostream> using namespace std; void insertsort(int a[],int length) //直接插入排序 { int i,j; for(i=2;i<=length;i++) { if(a[i]<a[i-1]) 阅读全文
posted @ 2020-11-07 22:47 Cool-baby 阅读(2) 评论(0) 推荐(0) 编辑