当前位置:   article > 正文

2017百度面试现场coding算法一_算法面试coding题

算法面试coding题

求字符串中字符的出现次数,并按照字典序排列
输入:“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(
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/633163
推荐阅读
相关标签
  

闽ICP备14008679号