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

[C++]对字符串向量排序

时间:2015-06-04 22:54:11      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:c++   c++11   

让字符串向量首先按字符串长度进行排序,长度短的在前,长的在后。如果长度相等则按字典序排序,并移除重复的字符串。

去重复并按字典序排序:

void elimDumps(vector<string> &words)
{
	// 按字典序排序
	sort(words.begin(), words.end());

	// unique重排输入范围,使得每个单词只出现一次
	// 并排列在范围的前部,返回指向不重复区域之后一个位置的迭代器
	auto end_unique = unique(words.begin(), words.end());

	// 删除重复单词
	words.erase(end_unique, words.end());
}

比较函数,用来按长度排序单词:

bool isShorter(const string &s1, const string &s2)
{
	return s1.size() < s2.size();
}

主函数:

int _tmain(int argc, _TCHAR* argv[])
{
	// 创建并初始化字符串向量
	vector<string> words{ "aaa", "c", "eeee", "b", "cccc", "c" };

	// 移除重复单词并按字典序排序
	elimDumps(words);

	// 将向量按字符串大小排序,使用稳定排序算法保持相同长度的单词按字典序排列
	stable_sort(words.begin(), words.end(), isShorter);

	for (auto &s : words)
	{
		cout << s << endl;
	}

	return 0;
}

程序执行结果:

技术分享

[C++]对字符串向量排序

标签:c++   c++11   

原文地址:http://blog.csdn.net/yamingwu/article/details/46365085

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