Design a data structure that supports the following two operations:
void addWord(word) bool search(word)
search(word) can search a literal word or a regular expression string containing only letters a-z
or .
. A .
means it can represent any one letter.
For example:
addWord("bad") addWord("dad") addWord("mad") search("pad") -> false search("bad") -> true search(".ad") -> true search("b..") -> true
public class WordDictionary { private Trie trie = new Trie(); // Adds a word into the data structure. public void addWord(String word) { trie.insert(word); } // Returns if the word is in the data structure. A word could // contain the dot character '.' to represent any one letter. public boolean search(String word) { return trie.search(word); } } // Your WordDictionary object will be instantiated and called as such: // WordDictionary wordDictionary = new WordDictionary(); // wordDictionary.addWord("word"); // wordDictionary.search("pattern"); class Trie { private TrieNode root = new TrieNode(); public void insert(String word) { root.insert(word.toCharArray(), 0); } public boolean search(String word) { return root.search(word.toCharArray(), 0); } } class TrieNode { private TrieNode[] nodes; private boolean end; public TrieNode() { int size = 26; nodes = new TrieNode[size]; end = false; } public void insert(char[] chars, int start) { if (start == chars.length) { end = true; return; } int idx = getIndex(chars[start]); if (idx == -1) { for (int i = 0; i < nodes.length; i++) { insert(i, chars, start); } } else { insert(idx, chars, start); } } private void insert(int i, char[] chars, int start) { // TODO Auto-generated method stub TrieNode node = nodes[i]; if (node != null) { node.insert(chars, start+1); } else { node = new TrieNode(); nodes[i] = node; node.insert(chars, start+1); } } private int getIndex(char c) { // TODO Auto-generated method stub if (c == '.') { return -1; } return c - 'a'; } public boolean search(char[] chars, int start) { if (start == chars.length) { return end; } char c = chars[start]; int idx = getIndex(c); if (idx == -1) { for (int i = 0; i < nodes.length; i++) { boolean flag = search(i, chars, start); if (flag) { return true; } } return false; } else { return search(idx, chars, start); } } private boolean search(int i, char[] chars, int start) { // TODO Auto-generated method stub TrieNode node = nodes[i]; if (node == null) { return false; } return node.search(chars, start + 1); } }
相关推荐
针对LeetCode第170题“Two Sum III - Data structure design”,我们首先要掌握的是如何设计一个数据结构来高效地解决两数之和问题。LeetCode 170题要求设计一个数据结构,支持以下操作: 1. add(number):向数据...
`add`方法用于向数据结构中添加一个数字,其内部实现可以是简单地将数字添加到一个数组中,也可以是更新一个哈希表,记录每个数字出现的次数。`find`方法则用于寻找是否存在两个数的和等于目标值,其内部实现应该...
201 | [Bitwise AND of Numbers Range](https://leetcode.com/problems/bitwise-and-of-numbers-range/) | [C++](./C++/bitwise-and-of-numbers-range.cpp) [Python](./Python/bitwise-and-of-numbers-range.py) | _...
6. **Add and Search Word - Data structure design**:设计一个数据结构,可以在已有的单词列表中添加新词并搜索模式。这需要一个动态更新的前缀树。 7. **Word Search II**:在一个二维字符网格中找出所有具有...
lru缓存leetcode ...数据结构设计https://leetcode.com/problems/add-and-search-word-data-structure-design/ 硬字搜索IIhttps://leetcode.com/problems/word-search-ii/ EasyFind the Difference ...
3. "Add and Search Word - Data structure design"(添加和搜索单词 - 数据结构设计):这个问题涉及构建一个字典树,并结合LRU缓存进行搜索优化。 在"python-leetcode-master"这个压缩包中,很可能包含了一个或多...
4) Add the Drag and Drop Component Suite components directory to your library path. 5) Load the demo project group: demo\dragdrop_delphi.bpg for Delphi 5 and 6 demo\dragdrop_bcb4.bpg for C++ ...
(b) the name of the table, the names of the table's attributes, the data types of the table's attributes, the formats of the table's attributes, and the maximum number of rows that the table can have...
Discover how Cassandra's distributed design lets you add or remove nodes from the cluster as your application requires, Get examples for writing clients in Java, Python, and C#, Extend Cassandra by ...
Allows create and fill data in design-time and save data in dfm file of the Form. Allows keep record in the manner of trees. Each record can have record elements-branches and itself be an ...
Allows create and fill data in design-time and save data in dfm file of the Form. Allows keep record in the manner of trees. Each record can have record elements-branches and itself be an ...
Allows create and fill data in design-time and save data in dfm file of the Form. Allows keep record in the manner of trees. Each record can have record elements-branches and itself be an ...
Allows create and fill data in design-time and save data in dfm file of the Form. Allows keep record in the manner of trees. Each record can have record elements-branches and itself be an ...
Allows create and fill data in design-time and save data in dfm file of the Form. Allows keep record in the manner of trees. Each record can have record elements-branches and itself be an ...
Transact-SQL, or T-SQL, is Microsoft Corporation’s powerful implementation of the ANSI standard SQL database query language, which was designed to retrieve, manipulate, and add data to relational ...
- Understanding XML structure and syntax. - Using the `xml.etree.ElementTree` module for creating XML documents. 26. **Prefix Notation Calculator** - **Objective:** Implement a calculator for ...
The user must be able to add to and modify the design in order to produce the desired result. Additionally, all tools would need a way to save and load designs from disk so that users can ...
What structure and design strategies you can use for compelling data visualization How to use data binding, animations and events, scales, and color pickers How to use shapes, path generators, arcs ...