题目
原题链接:Two-gram
题意
在所给字符串中找到出现次数最多的二位字符串,次数相同可随意输出。
代码
#include
using namespace std;
int main() {
int n,maxx=0;
string s,ans;
map m;
cin>>n>>s;
for(int i=0; imaxx){
maxx=m[tmp];
ans=tmp;
}
}
cout<