5月挑战Day14-Implement Trie (Prefix Tree)(Medium)

本文详细介绍了如何使用Python实现字典树(Trie)的数据结构,包括insert、search和startsWith三个核心方法。通过对比数组暴力解法和字典树解法的时间复杂度,展示了字典树在前缀搜索上的优势。
摘要由CSDN通过智能技术生成

Day14-Implement Trie (Prefix Tree)(Medium)

问题描述:

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

Example:

Example:

Trie trie = new Trie();

trie.insert("apple");
trie.search("apple");   // returns true
trie.search("app");     // returns false
trie.startsWith("app"); // returns true
trie.insert("app");   
trie.search("app");     // returns true

这次先写例子的原因就是问题描述太简易了,我第一遍看的时候是没明白要干啥,看了例子才懂,说让我们实现一种数据结构的三种功能,插入,搜索,以及给定一个字符串检测“树”中的元素的前缀是否等于这个字符串。

解法一:

第一眼看过去挺简单的,就是无脑建立一个数组,插入就是往数组中插入值呗,搜索就是搜索数组中的元素,时间复杂度为O(N),而检测是否是前缀的那个函数就是在遍历数组中的元素时,我们取出元素先判断这个值的长度是否大于等于给定字符串长度,如果是再判断前缀是否相等。时间复杂度为O(N*M)

class Trie:

    def __init__(self):
        """
        Initialize your data structure here.
        """
        self.tree = []
        

    def insert(self, word: str) -> None:
        """
        Inserts a word into the trie.
        """
        self.tree.append(word)
        

    def search(self, word: str) -> bool:
        """
        Returns if the word is in the trie.
        """
        for t in self.tree:
            if t == word:
                return True
        return False
        

    def startsWith(self, prefix: str) -> bool:
        """
        Returns if there is any word in the trie that starts with the given prefix.
        """
        for t in self.tree:
            if len(t) >= len(prefix) and t[:len(prefix)] == prefix:
                return True
        return False
                
        


# 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)

解法二:

上面那种暴力解法缺陷肯定就是时间复杂度高了。看了网上大神的博客后才知道这是一种特殊的树结构,字典树(孤陋寡闻了。。。之前好像从没听过)。这里贴一下一位大神关于这道题解法的地址吧,因为第一次用这种结构,也处于迷糊状态,解释不清,可以去看看大神的解析,很清楚,代码也很漂亮写的。
【LeetCode】208. Implement Trie (Prefix Tree) 解题报告(Python & C++)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值