InsertSort
Posted vlyf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了InsertSort相关的知识,希望对你有一定的参考价值。
#include<iostream>
using std::cin;
using std::cout;
using std::endl;
//插入排序-升序
void InsertSort(int a[], int n)
{
for (int j = 1; j < n; j++)
{
int key = a[j];
int i = j - 1;
while (i >= 0 && a[i] > key)
{
a[i + 1] = a[i];
i--;
}
a[i + 1] = key;
}
}
int main(void)
{
int a[] = { 4,3,2,1,0 };
InsertSort(a, 5);
for (int i = 0; i < 5; i++)
cout << a[i] << endl;
return 0;
}
以上是关于InsertSort的主要内容,如果未能解决你的问题,请参考以下文章