1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/实现一个魔法字典 [US1pGT].html

55 lines
2.8 KiB
HTML

<p>设计一个使用单词列表进行初始化的数据结构,单词列表中的单词 <strong>互不相同</strong> 。 如果给出一个单词,请判定能否只将这个单词中<strong>一个</strong>字母换成另一个字母,使得所形成的新单词存在于已构建的神奇字典中。</p>
<p>实现 <code>MagicDictionary</code> 类:</p>
<ul>
<li><code>MagicDictionary()</code> 初始化对象</li>
<li><code>void buildDict(String[]&nbsp;dictionary)</code> 使用字符串数组&nbsp;<code>dictionary</code> 设定该数据结构,<code>dictionary</code> 中的字符串互不相同</li>
<li><code>bool search(String searchWord)</code> 给定一个字符串 <code>searchWord</code> ,判定能否只将字符串中<strong> 一个 </strong>字母换成另一个字母,使得所形成的新字符串能够与字典中的任一字符串匹配。如果可以,返回 <code>true</code> ;否则,返回 <code>false</code></li>
</ul>
<p>&nbsp;</p>
<div class="top-view__1vxA">
<div class="original__bRMd">
<div>
<p><strong>示例:</strong></p>
<pre>
<strong>输入</strong>
inputs = [&quot;MagicDictionary&quot;, &quot;buildDict&quot;, &quot;search&quot;, &quot;search&quot;, &quot;search&quot;, &quot;search&quot;]
inputs = [[], [[&quot;hello&quot;, &quot;leetcode&quot;]], [&quot;hello&quot;], [&quot;hhllo&quot;], [&quot;hell&quot;], [&quot;leetcoded&quot;]]
<strong>输出</strong>
[null, null, false, true, false, false]
<strong>解释</strong>
MagicDictionary magicDictionary = new MagicDictionary();
magicDictionary.buildDict([&quot;hello&quot;, &quot;leetcode&quot;]);
magicDictionary.search(&quot;hello&quot;); // 返回 False
magicDictionary.search(&quot;hhllo&quot;); // 将第二个 &#39;h&#39; 替换为 &#39;e&#39; 可以匹配 &quot;hello&quot; ,所以返回 True
magicDictionary.search(&quot;hell&quot;); // 返回 False
magicDictionary.search(&quot;leetcoded&quot;); // 返回 False
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;=&nbsp;dictionary.length &lt;= 100</code></li>
<li><code>1 &lt;=&nbsp;dictionary[i].length &lt;= 100</code></li>
<li><code>dictionary[i]</code> 仅由小写英文字母组成</li>
<li><code>dictionary</code> 中的所有字符串 <strong>互不相同</strong></li>
<li><code>1 &lt;=&nbsp;searchWord.length &lt;= 100</code></li>
<li><code>searchWord</code> 仅由小写英文字母组成</li>
<li><code>buildDict</code> 仅在 <code>search</code> 之前调用一次</li>
<li>最多调用 <code>100</code><code>search</code></li>
</ul>
</div>
</div>
</div>
<p>&nbsp;</p>
<p><meta charset="UTF-8" />注意:本题与主站 676&nbsp;题相同:&nbsp;<a href="https://leetcode-cn.com/problems/implement-magic-dictionary/">https://leetcode-cn.com/problems/implement-magic-dictionary/</a></p>