亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

淮南市| 宁海县| 磴口县| 岑溪市| 西藏| 连江县| 钟山县| 姜堰市| 乌兰察布市| 西林县| 清水河县| 怀安县| 鄂州市| 隆德县| 兰考县| 清河县| 开阳县| 开鲁县| 焦作市| 陆良县| 安多县| 土默特左旗| 屏边| 丰宁| 黔江区| 宜州市| 竹溪县| 十堰市| 西乌珠穆沁旗| 民乐县| 长寿区| 蓬溪县| 天峨县| 平远县| 西城区| 重庆市| 孝昌县| 青龙| 孝感市| 玉门市| 大石桥市|