91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

和龙市| 兴义市| 民和| 普格县| 嘉兴市| 康马县| 隆林| 青海省| 蛟河市| 屏边| 漳州市| 金塔县| 贵定县| 通河县| 金昌市| 芦溪县| 双牌县| 阿克苏市| 来安县| 大姚县| 邯郸县| 句容市| 平果县| 兴文县| 清水县| 延边| 蒲城县| 错那县| 雷州市| 夹江县| 公安县| 南昌市| 东丽区| 红原县| 金湖县| 吉木萨尔县| 新干县| 历史| 衡山县| 霍邱县| 化州市|