题目
题目链接:383. 赎金信 - 力扣(LeetCode)
给你两个字符串:ransomNote
和 magazine
,判断 ransomNote
能不能由 magazine
里面的字符构成。
如果可以,返回 true
;否则返回 false
。
magazine
中的每个字符只能在 ransomNote
中使用一次。
ransomNote
和magazine
由小写英文字母组成
输入:ransomNote = "a", magazine = "b"
输出:false
输入:ransomNote = "aa", magazine = "aab"
输出:true
class Solution {
public:bool canConstruct(string ransomNote, string magazine) {}
};
思路 & 代码
数组做哈希表
该题 和 242.有效的字母异位词 解题思路一样。
#include <iostream>
#include <string>using namespace std;class Solution {
public:bool canConstruct(string ransomNote, string magazine) {int record[26] = {0};if(ransomNote.size() > magazine.size()) {return false;}for(int i = 0; i < magazine.size(); i++) {record[magazine[i] - 'a']++;}for(int i = 0; i < ransomNote.size(); i++) {record[ransomNote[i] - 'a']--;if(record[ransomNote[i] - 'a'] < 0) {return false;}}return true;}
};int main(){string s, t;cin >> s;cin >> t;cout << "s: " << s << endl;cout << "t: " << t << endl;Solution obj;bool res = obj.canConstruct(s, t);cout << boolalpha;cout << "res: " << res << endl;}