mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-25 17:50:26 +08:00
55 lines
1.9 KiB
HTML
55 lines
1.9 KiB
HTML
<p>请设计一个程序来支持用户在文本编辑器中的模糊搜索功能。用户输入内容中可能使用到如下两种通配符:</p>
|
|
|
|
<ul>
|
|
<li><code>'.'</code> 匹配任意单个字符。</li>
|
|
<li><code>'*'</code> 匹配零个或多个前面的那一个元素。</li>
|
|
</ul>
|
|
|
|
<p> </p>
|
|
|
|
<p>请返回用户输入内容 <code>input</code> 所有字符是否可以匹配原文字符串 <code>article</code>。</p>
|
|
|
|
<p> </p>
|
|
|
|
<p><strong>示例 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>输入: </strong>article = "aa", input = "a"
|
|
<strong>输出:</strong> false
|
|
<strong>解释:</strong> "a" 无法匹配 "aa" 整个字符串。
|
|
</pre>
|
|
|
|
<p><strong>示例 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>输入: </strong>article = "aa", input = "a*"
|
|
<strong>输出:</strong> true
|
|
<strong>解释:</strong> 因为 '*' 代表可以匹配零个或多个前面的那一个元素, 在这里前面的元素就是 'a'。因此,字符串 "aa" 可被视为 'a' 重复了一次。
|
|
</pre>
|
|
|
|
<p><strong>示例 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>输入: </strong>article = "ab", input = ".*"
|
|
<strong>输出:</strong> true
|
|
<strong>解释:</strong> ".*" 表示可匹配零个或多个('*')任意字符('.')。
|
|
</pre>
|
|
|
|
<p> </p>
|
|
|
|
<p><strong>提示:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= article.length <= 20</code></li>
|
|
<li><code>1 <= input.length <= 20</code></li>
|
|
<li><code>article</code> 只包含从 <code>a-z</code> 的小写字母。</li>
|
|
<li><code>input</code> 只包含从 <code>a-z</code> 的小写字母,以及字符 <code>.</code> 和 <code>*</code> 。</li>
|
|
<li>保证每次出现字符 <code>*</code> 时,前面都匹配到有效的字符</li>
|
|
</ul>
|
|
|
|
<p> </p>
|
|
|
|
<p>注意:本题与主站 10 题相同:<a href="https://leetcode-cn.com/problems/regular-expression-matching/">https://leetcode-cn.com/problems/regular-expression-matching/</a></p>
|
|
|
|
<p> </p>
|