package
0.0.0-20210525112244-a601ee6fe7cf
Repository: https://github.com/smartsyoung/leetcode-in-go.git
Documentation: pkg.go.dev

# README

208. Implement Trie (Prefix Tree)

题目

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

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

解题思路

见程序注释

# Functions

No description provided by the author

# Structs

Trie 是便于 word 插入与查找的数据结构.