赞
踩
求字符串中字符的出现次数,并按照字典序排列
输入:“I am a student a boy”
输出:[(I,1),(a,2),(am,1),(boy,1),(student,1)]
(注意字符串截取的规则,注意最后单词的处理,注意比较函数的引用)
struct Item{
string word;
int count;
};
bool compare(Item &a,Item &b)
{
return a.word<b.word;
}
vector<Item> wordNum(string weight)
{
vector<Item> vec;
int len=weight.length();
int s=0;
for(
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。