Leetcode - Add and Search Word - Data structure design

Screenshot from 2016-03-02 00:15:09.png

My code:

public class WordDictionary {
    private class TrieNode {
        char c;
        boolean isLeaf;
        HashMap<Character, TrieNode> tracker = new HashMap<Character, TrieNode>();
        TrieNode() {
            
        }
    }
    
    private TrieNode root = new TrieNode();
    // Adds a word into the data structure.
    public void addWord(String word) {
        if (word == null || word.length() == 0)
            return;
        TrieNode temp = root;
        for (int i = 0; i < word.length(); i++) {
            char curr = word.charAt(i);
            if (temp.tracker.containsKey(curr)) {
                temp = temp.tracker.get(curr);
            }
            else {
                TrieNode newNode = new TrieNode();
                newNode.c = curr;
                temp.tracker.put(curr, newNode);
                temp = newNode;
            }
            if (i == word.length() - 1)
                temp.isLeaf = true;
        }
    }

    // Returns if the word is in the data structure. A word could
    // contain the dot character '.' to represent any one letter.
    public boolean search(String word) {
        if (word == null || word.length() == 0)
            return false;
        return search(word, 0, root);
    }
    
    private boolean search(String word, int p, TrieNode t) {
        if (p >= word.length())
            return t.isLeaf;
        TrieNode temp = t;
        boolean ret = false;
        for (int i = p; i < word.length(); i++) {
            char curr = word.charAt(i);
            if (curr == '.') {
                for (Character c : temp.tracker.keySet()) {
                    TrieNode next = temp.tracker.get(c);
                    ret = ret | search(word,i + 1, next);
                    if (ret)
                        return ret;
                }
                return false;
            }
            else {
                if (!temp.tracker.containsKey(curr))
                    return false;
                else {
                    temp = temp.tracker.get(curr);
                }
            }
        }
        return temp.isLeaf;
    }
}

// Your WordDictionary object will be instantiated and called as such:
// WordDictionary wordDictionary = new WordDictionary();
// wordDictionary.addWord("word");
// wordDictionary.search("pattern");

自己寫了出來(lái)。
主要一個(gè)地方是黄绩,
"." 的時(shí)候羡洁,需要多個(gè)入口dfs,那么爽丹,只要有一個(gè)dfs成功了筑煮,后面的就不需要繼續(xù)進(jìn)行了,直接return粤蝎。這樣才能不超時(shí)真仲。

Anyway, Good luck, Richardo!

My code:

public class WordDictionary {
    private TrieNode root = new TrieNode('-');
    private class TrieNode {
        boolean isWord = false;
        HashMap<Character, TrieNode> table;
        char val;
        
        TrieNode(char input) {
            val = input;
            table = new HashMap<Character, TrieNode>();
        }
    }
    
    // Adds a word into the data structure.
    public void addWord(String word) {
        if (word == null || word.length() == 0) {
            return;
        }
        TrieNode node = root;
        for (int i = 0; i < word.length(); i++) {
            char curr = word.charAt(i);
            if (node.table.containsKey(curr)) {
                node = node.table.get(curr);
            }
            else {
                TrieNode newTrieNode = new TrieNode(curr);
                node.table.put(curr, newTrieNode);
                node = newTrieNode;
            }
        }
        node.isWord = true;
    }

    // Returns if the word is in the data structure. A word could
    // contain the dot character '.' to represent any one letter.
    public boolean search(String word) {
        if (word == null || word.length() == 0) {
            return false;
        }
        
        return search(word, root, 0);
    }
    
    private boolean search(String word, TrieNode node, int index) {
        if (index >= word.length()) {
            return node.isWord;
        }
        char curr = word.charAt(index);
        if (node.table.containsKey(curr)) {
            node = node.table.get(curr);
            return search(word, node, index + 1);
        }
        else if (curr == '.') {
            boolean flag = false;
            Set<Character> set = node.table.keySet();
            for (Character c : set) {
                flag = flag | search(word, node.table.get(c), index + 1);
                if (flag) {
                    return true;
                }
            }
            return false;
        }
        else {
            return false;
        }
    }
}

// Your WordDictionary object will be instantiated and called as such:
// WordDictionary wordDictionary = new WordDictionary();
// wordDictionary.addWord("word");
// wordDictionary.search("pattern");

這道題目的思想和以前差不多。一開(kāi)始沒(méi)做出來(lái)初澎。
另外可以用 array來(lái)代替 hashmap

另外:
java hashset iterator performance

http://stackoverflow.com/questions/12069877/what-the-iteration-cost-on-a-hashset-also-depend-on-the-capacity-of-backing-map

hashmap .keySet() O(1)

for (Character c : set) {...} O(n) n = backup array length
遍歷的時(shí)候秸应,仍然要遍歷整個(gè)數(shù)組,如果為空碑宴,就跳過(guò)软啼。

Anyway, Good luck, Richardo! -- 08/19/2016

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市延柠,隨后出現(xiàn)的幾起案子祸挪,更是在濱河造成了極大的恐慌,老刑警劉巖贞间,帶你破解...
    沈念sama閱讀 211,376評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贿条,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡增热,警方通過(guò)查閱死者的電腦和手機(jī)整以,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)峻仇,“玉大人公黑,你說(shuō)我怎么就攤上這事。” “怎么了凡蚜?”我有些...
    開(kāi)封第一講書人閱讀 156,966評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵奠骄,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我番刊,道長(zhǎng)含鳞,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書人閱讀 56,432評(píng)論 1 283
  • 正文 為了忘掉前任芹务,我火速辦了婚禮蝉绷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘枣抱。我一直安慰自己熔吗,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布佳晶。 她就那樣靜靜地躺著桅狠,像睡著了一般。 火紅的嫁衣襯著肌膚如雪轿秧。 梳的紋絲不亂的頭發(fā)上中跌,一...
    開(kāi)封第一講書人閱讀 49,792評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音菇篡,去河邊找鬼漩符。 笑死,一個(gè)胖子當(dāng)著我的面吹牛驱还,可吹牛的內(nèi)容都是我干的嗜暴。 我是一名探鬼主播,決...
    沈念sama閱讀 38,933評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼议蟆,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼闷沥!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起咐容,我...
    開(kāi)封第一講書人閱讀 37,701評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤舆逃,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后疟丙,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體颖侄,經(jīng)...
    沈念sama閱讀 44,143評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡鸟雏,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評(píng)論 2 327
  • 正文 我和宋清朗相戀三年享郊,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片孝鹊。...
    茶點(diǎn)故事閱讀 38,626評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡炊琉,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情苔咪,我是刑警寧澤锰悼,帶...
    沈念sama閱讀 34,292評(píng)論 4 329
  • 正文 年R本政府宣布茄蚯,位于F島的核電站敞恋,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏顽分。R本人自食惡果不足惜舔清,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評(píng)論 3 313
  • 文/蒙蒙 一丝里、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧体谒,春花似錦杯聚、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至故响,卻和暖如春傀广,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背彩届。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工主儡, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人惨缆。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓糜值,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親坯墨。 傳聞我的和親對(duì)象是個(gè)殘疾皇子寂汇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評(píng)論 2 348

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