题目链接 写一个数据结构, 支持两种操作. 加入一个字符串, 查找一个字符串是否存在.查找的时候, '.'可以代表任意一个字符. 显然是Trie树, 添加就是正常的添加, 查找的时候只要dfs查找就可以. 具体dfs方法看代码. struct node { node *next[]; int idEnd; node() { memset(next, NULL, sizeof(next)); idEnd = ; } }; class WordDictionary { public: // Adds…