16.次数差

发布时间:2024年01月24日

思路:本题思路只是不用看题可以直接看输出描述,就是用map或者数组去储存每个字母出现的次数

#include <iostream>
#include<map>
#include<string>
using namespace std;
int main()
{
   string str;
   cin>>str;
   int i,j;
   map<char,int>h;
   for(auto s:str){
     h[s]++;
   }
   int minop=h[str[0]];
   int maxop=h[str[0]];
   for(auto s:str){
      maxop=max(maxop,h[s]);
      minop=min(minop,h[s]);
   }
   cout<<maxop-minop;

  // 请在此输入您的代码
  return 0;
}

?

文章来源:https://blog.csdn.net/weixin_73670733/article/details/135819234
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。