插入排序 #include <iostream> #include <string.h> using namespace std; int* insertSort(int* arr,int len){ //插入排序算法 int* tempArr = (int*)malloc(s…