前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >leetcode-819-Most Common Word(词频统计)

leetcode-819-Most Common Word(词频统计)

作者头像
chenjx85
发布2018-05-21 18:18:13
1K0
发布2018-05-21 18:18:13
举报

题目描述:

Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words.  It is guaranteed there is at least one word that isn't banned, and that the answer is unique.

Words in the list of banned words are given in lowercase, and free of punctuation.  Words in the paragraph are not case sensitive.  The answer is in lowercase.

代码语言:javascript
复制
Example:
Input: 
paragraph = "Bob hit a ball, the hit BALL flew far after it was hit."
banned = ["hit"]
Output: "ball"
Explanation: 
"hit" occurs 3 times, but it is a banned word.
"ball" occurs twice (and no other word does), so it is the most frequent non-banned word in the paragraph. 
Note that words in the paragraph are not case sensitive,
that punctuation is ignored (even if adjacent to words, such as "ball,"), 
and that "hit" isn't the answer even though it occurs more because it is banned.

Note:

  • 1 <= paragraph.length <= 1000.
  • 1 <= banned.length <= 100.
  • 1 <= banned[i].length <= 10.
  • The answer is unique, and written in lowercase (even if its occurrences in paragraph may have uppercase symbols, and even if it is a proper noun.)
  • paragraph only consists of letters, spaces, or the punctuation symbols !?',;.
  • Different words in paragraph are always separated by a space.
  • There are no hyphens or hyphenated words.
  • Words only consist of letters, never apostrophes or other punctuation symbols.

要完成的函数:

string mostCommonWord(string paragraph, vector<string>& banned) 

说明:

1、这道题目给定一个字符串,里面是一个句子,包含了字母(大小写都有)和空格、符号,还给了一个禁用词的vector(小写),要求我们对字符串里面的单词做词频分析,找到出现次数最多的单词,返回这个单词。

2、明白题意,这道题很容易做,也是一道工程类题目。

首先,对字符串中的字符逐个判断,如果是字母,转化为小写形式,记录位置为 i ,继续处理下一个,直到元素不是字母,记录位置 j ,把 i 到 j -1的子字符串放在vector中。

然后,对vector中的单词逐个判断,如果不是禁用词,那么累加次数。这里要使用set.count()来判断是不是禁用词,和map的数据结构来存储单词和对应的出现次数。

最后,遍历一遍map,不断更新出现的最大次数,顺便记录对应的元素,最终返回元素就可以了。

代码如下:

代码语言:javascript
复制
    string mostCommonWord(string paragraph, vector<string>& banned) 
    {
        int s1=paragraph.size(),i=0,j;
        vector<string>words;
        while(i<s1)
        {
            if(isalpha(paragraph[i]))
            {
                j=i+1;
                paragraph[i]=tolower(paragraph[i]);//转化为小写字母
                while(isalpha(paragraph[j]))//j不断前进
                {
                    paragraph[j]=tolower(paragraph[j]);
                    j++;
                }
                words.push_back(paragraph.substr(i,j-i));//提取子字符串,插入到vector中
                i=(j+1);//更新i的值
            }
            else
                i++;
        }
        set<string>banwords(banned.begin(),banned.end());//把禁用词vector转化为set,快速判断
        map<string,int>wordnum;//定义一个map来存储单词和出现次数
        for(auto word:words)//记录每个单词的出现次数
        {
            if(banwords.count(word)==0)
                wordnum[word]++;
        }
        int max1=0;
        string res;
        for(map<string,int>::iterator iter=wordnum.begin();iter!=wordnum.end();iter++)
        {
            if(iter->second>max1)//不断更新max1和对应的单词
            {
                max1=iter->second;
                res=iter->first;
            }
        }
        return res; 
    }

上述代码实测7ms,因为服务器接收到的cpp submissions有限,所以没有打败的百分比。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-05-19 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目描述:
  • 要完成的函数:
  • 说明:
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档