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 }
原文地址:https://www.cnblogs.com/lokwongho/p/9967299.html