package
0.0.0-20190725034537-db5e768ce8c3
Repository: https://github.com/frankegoesdown/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 插入与查找的数据结构.