本文共 552 字,大约阅读时间需要 1 分钟。
让你统计字符串最多的那个串,并输出
直接用map统计,不断更新最大值即可
#include #include #include #include using namespace std;int main(){ string s,ans; int n; //freopen("in.txt","r",stdin); while(cin>>n&&n){ map m;//映射 int maxn=0; while(n--){ cin>>s; m[s]++; if(m[s]>maxn){ maxn=m[s]; ans=s; } } cout< <
转载于:https://www.cnblogs.com/mch5201314/p/9803536.html