2 Star 0 Fork 0

mtgo/dataStructure_alogrithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
insert_sort.c 772 Bytes
一键复制 编辑 原始数据 按行查看 历史
mtgo 提交于 2022-02-22 21:51 . commit all file
//插入排序
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//对数组进行排序
void insertSort(int arr[],int len){
for (int i = 1; i < len; i++)
{
if (arr[i-1]>arr[i])
{
int temp=arr[i];
int j;
for (j = i-1; j >= 0&&temp<arr[j]; j--)
{
//数据后移
arr[j+1]=arr[j];
}
arr[j+1]=temp;
}
}
}
//遍历数组
void printArry(int arr[],int len){
for (int i = 0; i < len; i++)
{
printf("%d\n",arr[i]);
}
}
void test01(){
int arry[]={4,2,3,1,7,8,5,6,9};
int len=sizeof(arry)/sizeof(int);
insertSort(arry,len);
printArry(arry,len);
}
int main()
{
test01();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/mtgo666/data-structure-and-algorithm.git
git@gitee.com:mtgo666/data-structure-and-algorithm.git
mtgo666
data-structure-and-algorithm
dataStructure_alogrithm
master

搜索帮助