zoukankan      html  css  js  c++  java
  • [LintCode] Implement Trie 实现字典树

    Implement a trie with insert, search, and startsWith methods.

    Have you met this question in a real interview?

     
     
    Example
    Note

    You may assume that all inputs are consist of lowercase letters a-z.

    LeetCode上的原题,请参见我之前的博客Implement Trie (Prefix Tree) 实现字典树(前缀树)

    /**
     * Your Trie object will be instantiated and called as such:
     * Trie trie;
     * trie.insert("lintcode");
     * trie.search("lint"); will return false
     * trie.startsWith("lint"); will return true
     */
    class TrieNode {
    public:
        // Initialize your data structure here.
        TrieNode *child[26];
        bool isWord;
        TrieNode(): isWord(false) {
            for (auto & a : child) a = NULL;
        }
    };
    
    class Trie {
    public:
        Trie() {
            root = new TrieNode();
        }
    
        // Inserts a word into the trie.
        void insert(string word) {
            TrieNode *p = root;
            for (auto &a : word) {
                int i = a - 'a';
                if (!p->child[i]) p->child[i] = new TrieNode();
                p = p->child[i];
            }
            p->isWord = true;
        }
    
        // Returns if the word is in the trie.
        bool search(string word) {
            TrieNode *p = root;
            for (auto &a : word) {
                int i = a - 'a';
                if (!p->child[i]) return false;
                p = p->child[i];
            }
            return p->isWord;
        }
    
        // Returns if there is any word in the trie
        // that starts with the given prefix.
        bool startsWith(string prefix) {
            TrieNode *p = root;
            for (auto &a : prefix) {
                int i = a - 'a';
                if (!p->child[i]) return false;
                p = p->child[i];
            }
            return true;
        }
    
    private:
        TrieNode* root;
    };
  • 相关阅读:
    Java EE
    C++基础学习(二)之判断
    C++基础学习(一)之循环
    AutoCAD完全卸载
    point-cloud-annotation-tool编译发烧记_UBUNTU
    Ubuntu18.04安装QT5
    Ubuntu安装VTK-8.1
    常用Latex公式代码表[持续更新]
    shp矢量文件批处理裁剪栅格影像_IDL/ENVI
    摄影测量基本原理
  • 原文地址:https://www.cnblogs.com/grandyang/p/4868908.html
Copyright © 2011-2022 走看看