Leetcode:383. 赎金信

给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串ransom能不能由第二个字符串magazines里面的字符构成。如果可以构成,返回 true ;否则返回 false。

题目意思:ransom中出现的各个字符数量需大于等于magazine字符串中字符数量,没有出现的顺序要求

(题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。)

注意:
你可以假设两个字符串均只含有小写字母。

canConstruct("a", "b") -> false
canConstruct("aa", "ab") -> false
canConstruct("aa", "aab") -> true

Code:

bool canConstruct(string ransomNote, string magazine){
        int hash[26] = {0};
        for(char x:magazine){
            hash[x-'a'] += 1;
        }
        for(char x : ransomNote){
            if(--hash[x-'a']<0)return false;
        }
}

此题最大障碍是搞清楚题目意思,虽然简单,但还是记录一下吧

你可能感兴趣的:(leetcode题目,leetcode,c++)