插入排序
Posted QianweiZ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。
#include <iostream>
using namespace std;
int main(int argc, const char * argv[]) {//以打牌为例子
int A[6]={14,41,59,26,41,58};
for (int i=0; i<6; i++) {。 //A里的第一个元素假设为手牌
cout << A[i] << " " ;
}
cout << endl;
for (int j=2; j<6; j++) {
int key=A[j]; //key为起此时起到手中的牌
int i=j-1;
while (i>0&&A[i]>key) { //让其与手中的牌依次比较,找到正确位置后插入
A[i+1]=A[i];
i=i-1;
}
A[i+1]=key;
}
for (int i=0; i<6; i++) {
cout << A[i] << " " ;
}
return 0;
}
以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章
直接插入排序 ,折半插入排序 ,简单选择排序, 希尔排序 ,冒泡排序 ,快速排序 ,堆排序 ,归并排序的图示以及代码,十分清楚