LeetCode 208.實現(xiàn) Trie (前綴樹) (Implement Trie (Prefix Tree))

LeetCode.jpg

208. 實現(xiàn) Trie (前綴樹)

實現(xiàn)一個 Trie (前綴樹)尤莺,包含 insert, search, 和 startsWith 這三個操作。

示例:

Trie trie = new Trie();

trie.insert("apple");
trie.search("apple"); // 返回 true
trie.search("app"); // 返回 false
trie.startsWith("app"); // 返回 true
trie.insert("app");
trie.search("app"); // 返回 true
說明:

你可以假設所有的輸入都是由小寫字母 a-z 構成的毙驯。
保證所有輸入均為非空字符串掺出。
在真實的面試中遇到過這道題?

Python3 實現(xiàn)

# @author:leacoder 
# @des:  實現(xiàn) Trie (前綴樹)
class Trie:

    def __init__(self):
        """
        Initialize your data structure here.
        """
        self.root = {}
        self.endofword = "end"

    def insert(self, word: str) -> None:
        """
        Inserts a word into the trie.
        """
        node = self.root
        for char in word:
            # dict.setdefault(key, default=None) 如果 key 在 字典中掉冶,返回對應的值被环。
            # 如果不在字典中糙及,則插入 key 及設置的默認值 default,并返回 default 筛欢,default 默認值為 None浸锨。
            node = node.setdefault(char,{}) 
            
        node[self.endofword] = self.endofword

    def search(self, word: str) -> bool:
        """
        Returns if the word is in the trie.
        """
        node = self.root
        for char in word:
            if char not in node:
                return False
            #node = node[char]
            node = node.get(char)
        return self.endofword in node
        

    def startsWith(self, prefix: str) -> bool:
        """
        Returns if there is any word in the trie that starts with the given prefix.
        """
        node = self.root
        for char in prefix:
            if char not in node:
                return False
            #node = node[char]
            node = node.get(char)
        return True

Java 實現(xiàn)

/*
 *@author:leacoder
 *@des:  實現(xiàn) Trie (前綴樹)
 */
class Trie {
    
    public int SIZE = 26;
    public TrieNode root;
    
    class TrieNode {
        
        TrieNode(char c){
            this.val = c;
            this.isWord = false;
            this.child = new TrieNode[SIZE];
        }
        
        public char val;
        public boolean isWord;
        public TrieNode[] child ;
    }
    
    

    /** Initialize your data structure here. */
    public Trie() {
        this.root = new TrieNode(' ');
    }
    
    /** Inserts a word into the trie. */
    public void insert(String word) {
        if(word == null || word.length() == 0) return;
        TrieNode node = this.root;
        for( int i = 0; i < word.length(); i++ ){
            char c = word.charAt(i);
            if( node.child[c - 'a'] == null){
                node.child[c - 'a'] = new TrieNode(c);
            } 
            node = node.child[c - 'a'];
        }
        node.isWord = true;
        
    }
    
    /** Returns if the word is in the trie. */
    public boolean search(String word) {
        TrieNode node = this.root;
        for( int i = 0; i < word.length(); i++ ){
            char c = word.charAt(i);
            if( node.child[c - 'a'] == null){
                return false;
            }
            node = node.child[c - 'a'];
        }
        
        return node.isWord;
    }
    
    /** Returns if there is any word in the trie that starts with the given prefix. */
    public boolean startsWith(String prefix) {
        
        TrieNode node = this.root;
        for( int i = 0; i < prefix.length(); i++ ){
            char c = prefix.charAt(i);
            if( node.child[c - 'a'] == null){
                return false;
            }
            node = node.child[c - 'a'];
        }
        
        return true;
    }
}

/**
 * Your Trie object will be instantiated and called as such:
 * Trie obj = new Trie();
 * obj.insert(word);
 * boolean param_2 = obj.search(word);
 * boolean param_3 = obj.startsWith(prefix);
 */

GitHub鏈接:
https://github.com/lichangke/LeetCode
知乎個人首頁:
https://www.zhihu.com/people/lichangke/
簡書個人首頁:
http://www.reibang.com/u/3e95c7555dc7
個人Blog:
https://lichangke.github.io/
歡迎大家來一起交流學習

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市版姑,隨后出現(xiàn)的幾起案子柱搜,更是在濱河造成了極大的恐慌,老刑警劉巖剥险,帶你破解...
    沈念sama閱讀 212,294評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件聪蘸,死亡現(xiàn)場離奇詭異,居然都是意外死亡表制,警方通過查閱死者的電腦和手機健爬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,493評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來么介,“玉大人浑劳,你說我怎么就攤上這事∝舶瑁” “怎么了魔熏?”我有些...
    開封第一講書人閱讀 157,790評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長鸽扁。 經(jīng)常有香客問我蒜绽,道長,這世上最難降的妖魔是什么桶现? 我笑而不...
    開封第一講書人閱讀 56,595評論 1 284
  • 正文 為了忘掉前任躲雅,我火速辦了婚禮,結果婚禮上骡和,老公的妹妹穿的比我還像新娘相赁。我一直安慰自己,他們只是感情好慰于,可當我...
    茶點故事閱讀 65,718評論 6 386
  • 文/花漫 我一把揭開白布钮科。 她就那樣靜靜地躺著,像睡著了一般婆赠。 火紅的嫁衣襯著肌膚如雪绵脯。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,906評論 1 290
  • 那天,我揣著相機與錄音蛆挫,去河邊找鬼赃承。 笑死,一個胖子當著我的面吹牛悴侵,可吹牛的內容都是我干的瞧剖。 我是一名探鬼主播,決...
    沈念sama閱讀 39,053評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼可免,長吁一口氣:“原來是場噩夢啊……” “哼抓于!你這毒婦竟也來了?” 一聲冷哼從身側響起巴元,我...
    開封第一講書人閱讀 37,797評論 0 268
  • 序言:老撾萬榮一對情侶失蹤毡咏,失蹤者是張志新(化名)和其女友劉穎驮宴,沒想到半個月后逮刨,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,250評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡堵泽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,570評論 2 327
  • 正文 我和宋清朗相戀三年修己,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片迎罗。...
    茶點故事閱讀 38,711評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡睬愤,死狀恐怖,靈堂內的尸體忽然破棺而出纹安,到底是詐尸還是另有隱情尤辱,我是刑警寧澤,帶...
    沈念sama閱讀 34,388評論 4 332
  • 正文 年R本政府宣布厢岂,位于F島的核電站光督,受9級特大地震影響,放射性物質發(fā)生泄漏塔粒。R本人自食惡果不足惜结借,卻給世界環(huán)境...
    茶點故事閱讀 40,018評論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望卒茬。 院中可真熱鬧船老,春花似錦、人聲如沸圃酵。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,796評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽郭赐。三九已至荸镊,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背躬存。 一陣腳步聲響...
    開封第一講書人閱讀 32,023評論 1 266
  • 我被黑心中介騙來泰國打工张惹, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人岭洲。 一個月前我還...
    沈念sama閱讀 46,461評論 2 360
  • 正文 我出身青樓宛逗,卻偏偏與公主長得像,于是被迫代替她去往敵國和親盾剩。 傳聞我的和親對象是個殘疾皇子雷激,可洞房花燭夜當晚...
    茶點故事閱讀 43,595評論 2 350