行者

慢慢走,不要停
  博客园  :: 新随笔  :: 管理

2020年5月29日

摘要: /* **插入排序 */ #include<stdio.h> void InsertSort(int A[],int N) { int i,j; for(i=1;i<N;i++) { int tmp=A[i]; for(j=i-1;j>=0&&tmp<A[j];j--) { A[j+1]=A[j]; 阅读全文

posted @ 2020-05-29 22:51 angury 阅读(154) 评论(0) 推荐(0)