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

编写函数,接受一个string,返回一个bool值,指出string是否有5个或者更多字符,使用此函数打印出长度大于等于5的元素

时间:2019-04-27 13:26:42      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:red   quic   rtl   name   大于等于   over   使用   tor   algorithm   

#include <algorithm>
using namespace std;

bool isFive(const string& s1) {
	return s1.size() >=5;
}

void shortFive(vector<string>& words, vector<string>::size_type sz) {
	auto end_five=  partition(words.begin(), words.end(), isFive);

	words.erase(end_five, words.end());
	for (string str : words)
		cout << str << " ";
}

int main() {
	vector<string>vec = { "the","quick","red","fox","jumps","over","the","slow","red","turtle" };
	
	shortFive(vec, vec.size());

	return 0;
}

  

编写函数,接受一个string,返回一个bool值,指出string是否有5个或者更多字符,使用此函数打印出长度大于等于5的元素

标签:red   quic   rtl   name   大于等于   over   使用   tor   algorithm   

原文地址:https://www.cnblogs.com/lIllIll/p/10778327.html

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