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

链表的特有算法操作

时间:2014-08-17 22:39:52      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   os   io   for   div   

10.42 使用list的算法实现排序和删除重复元素。

#include<algorithm>
#include<list>
#include<iostream>
#include<string>
using namespace std;

void elimDup(list<string> &words)
{
    words.sort();
    words.unique();
}

bool isShorter(const string &s1,const string &s2)
{
    return s1.size()<s2.size();
}
int main()
{
    list<string> v2={"aaa","aaaaa","dfdaaaa","fdaa","aaa","dfaaaaa","aaaaa"};
    elimDup(v2);
    for(auto vv:v2)
        cout<<vv<<" ";
    cout<<endl;
    return 0;
}

 

链表的特有算法操作,布布扣,bubuko.com

链表的特有算法操作

标签:style   blog   color   使用   os   io   for   div   

原文地址:http://www.cnblogs.com/wuchanming/p/3918335.html

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