中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 383. Ransom Note 字符串

發布時間:2020-04-09 00:19:50 來源:網絡 閱讀:1751 作者:313119992 欄目:編程語言

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是首選。


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滨海县| 行唐县| 崇仁县| 东宁县| 临江市| 怀安县| 龙山县| 崇义县| 台州市| 田林县| 新邵县| 高邮市| 同仁县| 明光市| 桐梓县| 阿克陶县| 周口市| 延庆县| 金阳县| 翼城县| 怀远县| 岳阳县| 吴川市| 东乌| 廊坊市| 顺义区| 临猗县| 泉州市| 交口县| 赤水市| 中牟县| 金溪县| 襄汾县| 都江堰市| 化州市| 南陵县| 图木舒克市| 宁河县| 水富县| 盐山县| 宁阳县|