Day 66 Hash:205. 同構字符串, 1002. 查找共用字符

205. 同構字符串

  • 思路
    • example
    • 假設:t.length == s.length
    • 不改變字符的順序

hash[s[i]] = 對應的t中的字符 (可能是t[i]也可能是之前t中的字符)

  • 復雜度. 時間:O(n), 空間: O(n)
class Solution:
    def isIsomorphic(self, s: str, t: str) -> bool:
        hash_s = collections.defaultdict(str)    
        hash_t = collections.defaultdict(str)   
        for i in range(len(s)):
            ch1, ch2 = s[i], t[i]
            # map
            if ch1 not in hash_s:
                hash_s[ch1] = ch2
            if ch2 not in hash_t:
                hash_t[ch2] = ch1 
            # compare 
            if hash_s[ch1] != ch2 or hash_t[ch2] != ch1:
                return False  
        return True  
  • 單個字典不夠
    • s='badc', t='baba'
    • s = 'ab', t='ca' (True)
class Solution:
    def isIsomorphic(self, s: str, t: str) -> bool:
        m, n = len(s), len(t) 
        if m != n:
            return False 
        table = collections.defaultdict(str) 
        for i in range(m):
            if s[i] != t[i]:
                if s[i] not in table:
                    table[s[i]] = t[i] 
                else:
                    if table[s[i]] != t[i]:
                        return False
        return True 
  • 這個可以
class Solution:
    def isIsomorphic(self, s: str, t: str) -> bool:
        m, n = len(s), len(t) 
        if m != n:
            return False 
        table_s = collections.defaultdict(str) 
        table_t = collections.defaultdict(str) 
        for i in range(m):
            ch1, ch2 = s[i], t[i] 
            if ch1 not in table_s:
                table_s[ch1] = ch2
            if ch2 not in table_t:
                table_t[ch2] = ch1 
            if table_s[ch1] != ch2 or table_t[ch2] != ch1:
                return False 
        return True 

1002. 查找共用字符

  • 思路
    • example
    • xxx

ord('a')
chr(ord('a'))

  • 復雜度. 時間:O(?), 空間: O(?)


class Solution:
    def commonChars(self, words: List[str]) -> List[str]:
        table = [0] * 26 
        n = len(words)
        for ch in words[0]:
            table[ord(ch) - ord('a')] += 1
        for i in range(1, n):
            word = words[i]
            table2 = [0] * 26
            for ch in word:
                table2[ord(ch) - ord('a')] += 1
            for j in range(26):
                table[j] = min(table[j], table2[j]) # j對應字符出現(xiàn)在最小次數(shù)
                # 當前遍歷到的word中不出現(xiàn)的字符必為0
        res = []
        for j in range(26):
            if table[j] != 0: # 必為共用字符, 重復次數(shù):table[j]
                res.extend([chr(j + ord('a'))] * table[j])
        return res  
class Solution:
    def commonChars(self, words: List[str]) -> List[str]:
        n = len(words) 
        res = [] 
        table = collections.defaultdict(int) 
        for ch in words[0]:
            table[ch] += 1 
        for i in range(1, n):
            table2 = collections.defaultdict(int)
            for ch in words[i]:
                table2[ch] += 1 
            for j in range(26): # !!!
                ch = chr(j + ord('a'))
                table[ch] = min(table[ch], table2[ch])
        for key, val in table.items():
            if val != 0: # 注意duplicate情況
                res.extend([key] * val)
        return res 
  • 去重版本
    • 數(shù)組
    • set 去重刻撒, 每個word重設
    • ans = ['e', 'l']
class Solution:
    def commonChars(self, words: List[str]) -> List[str]:
        table = [0] * 26 
        n = len(words)
        for i in range(n):
            word = words[i]
            temp = set()
            for ch in word:
                if ch not in temp:
                    table[ord(ch) - ord('a')] += 1
                temp.add(ch)
        res = []
        for j in range(26):
            if table[j] == n:
                res.append(chr(j + ord('a')))
        return res  
  • 以下版本不正確
class Solution:
    def commonChars(self, words: List[str]) -> List[str]:
        n = len(words) 
        res = [] 
        table = collections.defaultdict(int) 
        for ch in words[0]:
            if table[ch] < 1:
                table[ch] += 1 
        for i in range(1, n):
            for ch in words[i]:
                if table[ch] < i+1:
                    table[ch] += 1 
        for key, val in table.items():
            if val == n:
                res.append(key)
        return res 
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子默怨,更是在濱河造成了極大的恐慌掏秩,老刑警劉巖渗柿,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件用僧,死亡現(xiàn)場離奇詭異蜘腌,居然都是意外死亡必盖,警方通過查閱死者的電腦和手機拌牲,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來歌粥,“玉大人塌忽,你說我怎么就攤上這事∈唬” “怎么了土居?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長嬉探。 經(jīng)常有香客問我擦耀,道長,這世上最難降的妖魔是什么涩堤? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任眷蜓,我火速辦了婚禮,結果婚禮上定躏,老公的妹妹穿的比我還像新娘账磺。我一直安慰自己,他們只是感情好痊远,可當我...
    茶點故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布垮抗。 她就那樣靜靜地躺著,像睡著了一般碧聪。 火紅的嫁衣襯著肌膚如雪冒版。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天逞姿,我揣著相機與錄音辞嗡,去河邊找鬼。 笑死滞造,一個胖子當著我的面吹牛续室,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播谒养,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼挺狰,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起丰泊,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤薯定,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后瞳购,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體话侄,經(jīng)...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年学赛,在試婚紗的時候發(fā)現(xiàn)自己被綠了年堆。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,626評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡罢屈,死狀恐怖嘀韧,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情缠捌,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布译蒂,位于F島的核電站曼月,受9級特大地震影響,放射性物質發(fā)生泄漏柔昼。R本人自食惡果不足惜哑芹,卻給世界環(huán)境...
    茶點故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望捕透。 院中可真熱鬧聪姿,春花似錦、人聲如沸乙嘀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽虎谢。三九已至盟榴,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間婴噩,已是汗流浹背擎场。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留几莽,地道東北人迅办。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像章蚣,于是被迫代替她去往敵國和親站欺。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,494評論 2 348

推薦閱讀更多精彩內(nèi)容