码迷,mamicode.com
首页 > 其他好文 > 详细

插入排序

时间:2014-09-20 16:33:28      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   for   数据   div   sp   

插入排序适合数据大多数已经排好序的情况,时间复杂度为O(n*n)。

 

#include <iostream>
using namespace std;
int a[200]={3,354,12,54,897,1000,1};

void insert_sort(int n)
{
    int j;
    int temp;
    for(int i=1;i<n;i++)
    {
        j = i-1;
        temp = a[i];
        while(a[j]>temp&&j>=0)
        {
            a[j+1] = a[j];
            j--;
        }
        if(j!=i-1)
        a[j+1] = temp;
    }
}

int main()
{
    insert_sort(7);
    
    for(int i=0;i<7;i++)
    {
        cout<<a[i]<<endl;
    }
    
    return 0;
}

 

插入排序

标签:style   blog   color   io   os   for   数据   div   sp   

原文地址:http://www.cnblogs.com/ltwy/p/3983224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!