美文网首页
[Leetcode208](python):Trie树的基本操作

[Leetcode208](python):Trie树的基本操作

作者: myFamily329 | 来源:发表于2020-01-16 10:48 被阅读0次
1. 题目来源
2. 题目描述

实现一个 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 构成的。保证所有输入均为非空字符串。

3. 解题思路

根据Trie Tree(字典树/前缀树/单词查找树)对Trie基本结构,查找,插入等性质的描述进行编写。

4. 编程实现
Python
# 构建字典树结点
class TrieNode:
    def __init__(self):
        # isEnd是否为单词结尾
        self.isEnd = False
        # children
        self.next = [None for i in range(26)]
class Trie:
    def __init__(self):
        """
        Initialize your data structure here.
        """
        self.root = TrieNode()
        

    def insert(self, word: str) -> None:
        """
        Inserts a word into the trie.
        """
        node = self.root
        for i in range(len(word)):
            #本题目为0-25长度数组是否为None
            if node.next[ord(word[i]) - ord('a')] == None:
                node.next[ord(word[i]) - ord('a')] = TrieNode()
            node = node.next[ord(word[i]) - ord('a')]
        node.isEnd = True
        

    def search(self, word: str) -> bool:
        """
        Returns if the word is in the trie.
        """
        node = self.root
        for i in range(len(word)):
            if node.next[ord(word[i]) - ord('a')] == None:
                return False
            node = node.next[ord(word[i]) - ord('a')]
        # 确认为单词结束还是只是某个单词前缀
        return node.isEnd

    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 i in range(len(prefix)):
            if node.next[ord(prefix[i]) - ord('a')] == None:
                return False
            node = node.next[ord(prefix[i]) - ord('a')]
        return True


# Your Trie object will be instantiated and called as such:
# obj = Trie()
# obj.insert(word)
# param_2 = obj.search(word)
# param_3 = obj.startsWith(prefix)

相关文章

  • [Leetcode208](python):Trie树的基本操作

    1. 题目来源 分类:字典树 Leetcode208:Trie树的基本操作 2. 题目描述 实现一个 Trie (...

  • 数据结构与算法(十一)Trie字典树

    本文主要包括以下内容: Trie字典树的基本概念 Trie字典树的基本操作插入查找前缀查询删除 基于链表的Trie...

  • Leetcode208: 实现Trie(前缀树)

    【思路】前缀树的基本结构是一个最多有26个children的树

  • scala 实现trie树匹配

    近段时间需要使用trie树来加速like操作,在网上找了一圈发现没有可用的scala实现的trie树于是自己改了一...

  • 实现Trie Tree(实现前缀树)(LeetCode.208

    题目 实现Trie Tree(前缀树)包含 insert, search, 和 startsWith 这三个操作。...

  • trie树

    文章内容来自 Trie树:应用于统计和排序Trie树 trie树又称:字典树、单词查找树、前缀树等,总之是一种树状...

  • lintcode 473. Add and Search Wor

    典型的字典树trie题链接字典树结构就不再详述,这里的addword操作就如同常规的字典树增加单词的操作。 这里的...

  • Basic Trie Tree

      Trie Tree 实际上是一种前缀树。在自然语言处理中我们经常需要进行词的匹配、查询等等操作。Trie Tr...

  • 树结构之Trie

    1. 什么是trie树 1.Trie树 (特例结构树)Trie树,又称单词查找树、字典树,是一种树形结构,是一种哈...

  • 实现 Trie

    数据结构之Trie树Trie树:应用于统计和排序

网友评论

      本文标题:[Leetcode208](python):Trie树的基本操作

      本文链接:https://www.haomeiwen.com/subject/nlhfzctx.html