zoukankan      html  css  js  c++  java
  • 1071 Speech Patterns

    People often have a preference among synonyms of the same word. For example, some may prefer "the police", while others may prefer "the cops". Analyzing such patterns can help to narrow down a speaker's identity, which is useful when validating, for example, whether it's still the same person behind an online avatar.

    Now given a paragraph of text sampled from someone's speech, can you find the person's most commonly used word?

    Input Specification:

    Each input file contains one test case. For each case, there is one line of text no more than 1048576 characters in length, terminated by a carriage return  . The input contains at least one alphanumerical character, i.e., one character from the set [0-9 A-Z a-z].

    Output Specification:

    For each test case, print in one line the most commonly occurring word in the input text, followed by a space and the number of times it has occurred in the input. If there are more than one such words, print the lexicographically smallest one. The word should be printed in all lower case. Here a "word" is defined as a continuous sequence of alphanumerical characters separated by non-alphanumerical characters or the line beginning/end.

    Note that words are case insensitive.

    字符串相关知识点总结:

    ·判断是否数字,字母:

    #include <cctype>
    isnumber(int _c);
    isalnum(int _c);
    isalpha(int _c);
    

     ·大小写转换

    #include <cctype>
    tolower(int _c);
    toupper(int _c);
    

    ·字母数字转化

    #include <iostream>
    #include <sstream>
    using namespace std;
    
    string s="1234.4";
    printf("%f",stof(s));
    
    s="1234";
    printf("%d",stoi(s));
    
    a=1234;
    cout<<to_string(a);
    
     1 #include <string>
     2 #include <iostream>
     3 #include <map>
     4 #include <cctype>
     5 using namespace std;
     6 
     7 int main(){
     8     string input;
     9     map<string,int> Mp;
    10     
    11     getline(cin, input);
    12     string tmpStr;
    13     for(int i=0;i<input.length();i++){
    14         if(isalnum(input[i])){
    15             tmpStr+=tolower(input[i]);
    16             if(i==input.length()-1){
    17                 Mp[tmpStr]++;
    18             }
    19         }else{
    20             if(tmpStr.length()) Mp[tmpStr]++;
    21             tmpStr.clear();
    22         }
    23     }
    24     
    25     string max; int maxTimes;
    26     for(map<string,int>::iterator it=Mp.begin();it!=Mp.end();it++){
    27         if(maxTimes<it->second){
    28             maxTimes=it->second;
    29             max=it->first;
    30         }else if(maxTimes==it->second&&max>it->first){
    31             max=it->first;
    32         }
    33     }
    34     cout<<max<<" "<<maxTimes<<endl;
    35 }
  • 相关阅读:
    有效提高生产力的8个贴士
    如何提高团队编程水平
    PHPCMS V9使用中的一些心得体会
    2012全球SEO行业调查报告
    盘点SEO和SEM的优劣势
    DEDECMS 添加栏目图片
    2013年中国500强排行榜(公司名单及网址)
    十大淘宝搜索作弊行为
    利用curl抓取远程页面内容
    新浪,腾讯,淘宝,人人登陆
  • 原文地址:https://www.cnblogs.com/lokwongho/p/9967299.html
Copyright © 2011-2022 走看看