您好,登錄后才能下訂單哦!
383. Ransom Note
Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ; otherwise, it will return false.
Each letter in the magazine string can only be used once in your ransom note.
Note:
You may assume that both strings contain only lowercase letters.
canConstruct("a", "b") -> false canConstruct("aa", "ab") -> false canConstruct("aa", "aab") -> true
題目大意:
有一個隨機串,有一個大串。判斷隨機串是否為大串的組成部分。
隨機串某一字符的個數必須小于大串。隨機串中出現的字符大串中必須都有。
思路:
用map/unordered_map來處理大串,將字符的個數以及種類記錄在map/unordered_map中。然后進行判斷。
代碼如下:
class Solution { public: bool canConstruct(string ransomNote, string magazine) { if(ransomNote.size() == 0) return true; unordered_map<char,int> m; for(int i = 0;i < magazine.size();i++) { m[magazine[i]]++; } for(int i = 0 ; i < ransomNote.size(); i++) { if(m.find(ransomNote[i]) == m.end() || m[ransomNote[i]] == 0 ) return false; m[ransomNote[i]]--; } return true; } };
經過測試126組數據,使用map耗時132ms,使用unordered_map耗時84ms。所以在不需要map有序的情況下,使用unordered_map是首選。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。