码迷,mamicode.com
首页 > 编程语言 > 详细

《算法导论》杂记 - 第二章 算法基础

时间:2014-11-03 22:09:00      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   color   for   sp   div   on   

// asc
void insertionSortAsc(vector<int> &v)
{
    int len = v.size();
    for (int i = 1; i < len; i++)
    {
        int key = v[i];
        int j = i - 1;
        while (j >= 0 && v[j] > key)
        {
            v[j + 1] = v[j];
            j--;
        }
        v[j + 1] = key;
    }
}

// desc
void insertionSortDesc(vector<int> &v)
{
    int len = v.size();
    for (int i = 1; i < len; i++)
    {
        int key = v[i];
        int j = i - 1;
        while (j >= 0 && v[j] < key)
        {
            v[j + 1] = v[j];
            j--;
        }
        v[j + 1] = key;
    }
}

 

《算法导论》杂记 - 第二章 算法基础

标签:des   style   blog   io   color   for   sp   div   on   

原文地址:http://www.cnblogs.com/Azurewing/p/4063602.html

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