码迷,mamicode.com
首页 > 其他好文 > 详细

LintCode 55. 比较字符串

时间:2018-01-29 00:23:20      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:turn   for   blog   ret   param   比较   大写   char   tco   

比较两个字符串A和B,确定A中是否包含B中所有的字符。字符串A和B中的字符都是 大写字母

 样例

给出 A = "ABCD" B = "ACD",返回 true

给出 A = "ABCD" B = "AABC", 返回 false

 

解:在串A中某字母出现的次数一定要大于等于该字母在串B中出现的次数。

class Solution {
public:
    /*
     * @param A: A string
     * @param B: A string
     * @return: if string A contains all of the characters in B return true else return false
     */
    bool compareStrings(string &A, string &B) {
        // write your code here
        map<int,int> m1;
        map<int,int> m2;
        for(auto s:A)
        {
            m1[s]++;
        }
        for(auto s:B)
        {
            m2[s]++;
        }
        for(auto s:B)
        {
           if(m1[s]<m2[s])
                return false;
        }
        return true;
    }
};

 

LintCode 55. 比较字符串

标签:turn   for   blog   ret   param   比较   大写   char   tco   

原文地址:https://www.cnblogs.com/zslhg903/p/8372821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!