设计添加和搜索单词的数据结构
原文英文,约200词,阅读约需1分钟。发表于: 。Design a data structure that supports adding new words and finding if a string matches any previously added string. Implement the WordDictionary class: WordDictionary() Initializes the...
设计一个数据结构,支持添加新单词和查找字符串是否匹配已添加的单词。实现WordDictionary类,包括初始化、添加单词和搜索单词的方法,支持使用'.'匹配任意字母。