插入排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插入排序相关的知识,希望对你有一定的参考价值。

#include<iostream>
int main()
{
    int a[10];
    for(int i = 0; i<10; i++)
    {
        a[i] = 10 - i;
    }
    std::cout<<"The initial sequece:"<<std::endl;
    for(int i = 0; i<10; i++)
    {
        std::cout<<" "<<a[i];
    }
    std::cout<<std::endl;
    for(int i = 1; i<10; i++)
    {
        int k1 = a[i];
        for(int j = i-1; j>=0; j--)
        {
            int k2 = a[j];
            if(k1<k2)
            {
                a[j+1] = k2;
                a[j] = k1;
            }
        }
    }
    std::cout<<"The final sequece:"<<std::endl;
    for(int i = 0; i<10; i++)
        std::cout<<" "<<a[i];
    return 0;
}

以上是关于插入排序的主要内容,如果未能解决你的问题,请参考以下文章

KDoc:插入代码片段

代码片段使用复杂的 JavaScript 在 UIWebView 中插入 HTML?

将代码片段插入数据库并在 textarea 中以相同方式显示

关于在各浏览器中插入音频文件的html代码片段

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段