QQ群
直接插入排序 下面是我自己写的插入排序的代码 #include<iostream> using namespace std; void insertsort(int a[],int n){ int i,j,tmp; for(int i=1;i<n;i++)……