【题目】
给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串 ransom 能不能由第二个字符串 magazines 里面的字符构成。如果可以构成,返回 true ;否则返回 false。
(题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。杂志字符串中的每个字符只能在赎金信字符串中使用一次。)
注意
你可以假设两个字符串均只含有小写字母。
canConstruct(“a”, “b”) -> false
canConstruct(“aa”, “ab”) -> false
canConstruct(“aa”, “aab”) -> true
【代码】
【CPP】
执行用时:
12 ms, 在所有 C++ 提交中击败了88.05%的用户
内存消耗:
8.6 MB, 在所有 C++ 提交中击败了71.81%的用户
class Solution {
public:
bool canConstruct(string ransomNote, string magazine) {
int cnt[26]={0},test[26]={0};
for(auto c:magazine)
cnt[c-'a']++;
for(auto c:ransomNote)
test[c-'a']++;
for(int i=0;i<26;i++){
if(test[i]>cnt[i])
return false;
}
return true;
}
};