C语言之插入排序法二
Posted perseverance52
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言之插入排序法二相关的知识,希望对你有一定的参考价值。
C语言之插入排序法二
- C程序源码:
#include <stdio.h>
void print(int a[], int len)
{
printf("\\t");
for (int j = 0; j < len; j++)
{
printf("%d ", a[j]);
}
printf("\\n");
}
void InsertSort(int a[], int n)
{
for (int i = 1; i < n; i++)
{ //i=1的写法
if (a[i] < a[i - 1])
{ //若第i个元素大于i-1元素,直接插入。小于的话,移动有序表后插入
int j = i - 1;
int x = a[i]; //复制为哨兵,即存储待排序元素
a[i] = a[i - 1]; //先后移一个元素
while (x < a[j])
{ //查找在有序表的插入位置
a[j + 1] = a[j];
j--; //元素后移
}
a[j + 1] = x; //插入到正确位置
}
}
}
int main()
{
int a[] = {27, 36, 38, 44, 2, 3, 4, 5, 15, 19, 16, 46, 47, 48, 52};
int len = sizeof(a) / sizeof(int); //计算数组中的成员数
print(a, len);
InsertSort(a, len);
print(a, len);
return 0;
}
以上是关于C语言之插入排序法二的主要内容,如果未能解决你的问题,请参考以下文章