题解 | #统计字符#

统计字符

https://www.nowcoder.com/practice/4ec4325634634193a7cd6798037697a8

#include<iostream>
#include<string>
#include<algorithm>
using namespace std;


int C_time(string str,char pattern)
{
    int pos = 0;
    int count = 0;
    pos = str.find(pattern, pos);
    while (pos != str.npos)
    {
        count++;
        pos = str.find(pattern, pos+1);
    }
    return count;
    
}

int main()
{
    string str1, str2;
    while (getline(cin,str1))
    {
        if (str1 == "#")
        {
            break;
        }
        getline(cin, str2);
        for (int i = 0; i < str1.size(); i++)
        {
            int times = C_time(str2, str1[i]);
            printf("%c %d\n",str1[i],times);
        }
    }

    

}

全部评论

相关推荐

如题如果提出了一个薪资,A不成功,会有可能被取消offer吗
爱打瞌睡的柯基:最想去你们公司 但是别家开的高一些,希望能申请高一点 不管结果如何都谢谢你
点赞 评论 收藏
分享
牛客569470950号:也不知道是哪个群体45年前鬼哭狼嚎的为自己争取的被剥削的权利
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务