插入排序与希尔排序的
发表于:2024-11-28 作者:热门IT资讯网编辑
编辑最后更新 2024年11月28日,#include"iostream"using namespace std;int insertsort(int a[],int size){//直接插入排序for (int i = 0; i < s
#include"iostream"
using namespace std;
int insertsort(int a[],int size){//直接插入排序
for (int i = 0; i < size - 1; i++){
int temp = a[i+1];//保留要插入的点
int k = i;//k为要插入的位置