44:通配符匹配

This commit is contained in:
轩辕龙儿 2022-03-20 22:37:32 +08:00
parent e8ec49f301
commit a1f42d2b2c
2 changed files with 165 additions and 0 deletions

View File

@ -0,0 +1,108 @@
//给定一个字符串 (s) 和一个字符模式 (p) 实现一个支持 '?' '*' 的通配符匹配
//
// '?' 可以匹配任何单个字符
//'*' 可以匹配任意字符串包括空字符串
//
//
// 两个字符串完全匹配才算匹配成功
//
// 说明:
//
//
// s 可能为空且只包含从 a-z 的小写字母
// p 可能为空且只包含从 a-z 的小写字母以及字符 ? *
//
//
// 示例 1:
//
// 输入:
//s = "aa"
//p = "a"
//输出: false
//解释: "a" 无法匹配 "aa" 整个字符串
//
// 示例 2:
//
// 输入:
//s = "aa"
//p = "*"
//输出: true
//解释: '*' 可以匹配任意字符串
//
//
// 示例 3:
//
// 输入:
//s = "cb"
//p = "?a"
//输出: false
//解释: '?' 可以匹配 'c', 但第二个 'a' 无法匹配 'b'
//
//
// 示例 4:
//
// 输入:
//s = "adceb"
//p = "*a*b"
//输出: true
//解释: 第一个 '*' 可以匹配空字符串, 第二个 '*' 可以匹配字符串 "dce".
//
//
// 示例 5:
//
// 输入:
//s = "acdcb"
//p = "a*c?b"
//输出: false
// Related Topics 贪心 递归 字符串 动态规划 👍 836 👎 0
package leetcode.editor.cn;
//44:通配符匹配
public class WildcardMatching {
public static void main(String[] args) {
Solution solution = new WildcardMatching().new Solution();
System.out.println(solution.isMatch("adceb", "*a*b"));
System.out.println(solution.isMatch("aaaa", "***a"));
System.out.println(solution.isMatch("c", "*?*"));
System.out.println(solution.isMatch("hi", "*?"));
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
boolean[][] flag;
public boolean isMatch(String s, String p) {
if (p.equals("") && s.equals("")) return true;
if (p.equals("")) return false;
if (s.equals("")) return !p.matches(".*[a-z?]+.*");
char[] sArray = s.toCharArray();
char[] pArray = p.toCharArray();
boolean[] res = {false};
flag = new boolean[sArray.length + 1][pArray.length + 1];
isMatch(sArray, 0, pArray, 0, res);
return res[0];
}
private void isMatch(char[] sArray, int p, char[] pArray, int q, boolean[] res) {
if (p <= sArray.length && q <= pArray.length && flag[p][q])
return;
if (res[0])
return;
flag[p][q] = true;
if (p == sArray.length && q == pArray.length) {
res[0] = true;
return;
}
if (p < sArray.length && q < pArray.length && (sArray[p] == pArray[q] || pArray[q] == '?')) {
isMatch(sArray, p + 1, pArray, q + 1, res);
} else if (q < pArray.length && pArray[q] == '*') {
for (int i = 0; i <= sArray.length - p; i++) {
isMatch(sArray, p + i, pArray, q + 1, res);
}
}
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,57 @@
<p>给定一个字符串&nbsp;(<code>s</code>) 和一个字符模式&nbsp;(<code>p</code>) ,实现一个支持&nbsp;<code>&#39;?&#39;</code>&nbsp;&nbsp;<code>&#39;*&#39;</code>&nbsp;的通配符匹配。</p>
<pre>&#39;?&#39; 可以匹配任何单个字符。
&#39;*&#39; 可以匹配任意字符串(包括空字符串)。
</pre>
<p>两个字符串<strong>完全匹配</strong>才算匹配成功。</p>
<p><strong>说明:</strong></p>
<ul>
<li><code>s</code>&nbsp;可能为空,且只包含从&nbsp;<code>a-z</code>&nbsp;的小写字母。</li>
<li><code>p</code>&nbsp;可能为空,且只包含从&nbsp;<code>a-z</code>&nbsp;的小写字母,以及字符&nbsp;<code>?</code>&nbsp;&nbsp;<code>*</code></li>
</ul>
<p><strong>示例&nbsp;1:</strong></p>
<pre><strong>输入:</strong>
s = &quot;aa&quot;
p = &quot;a&quot;
<strong>输出:</strong> false
<strong>解释:</strong> &quot;a&quot; 无法匹配 &quot;aa&quot; 整个字符串。</pre>
<p><strong>示例&nbsp;2:</strong></p>
<pre><strong>输入:</strong>
s = &quot;aa&quot;
p = &quot;*&quot;
<strong>输出:</strong> true
<strong>解释:</strong>&nbsp;&#39;*&#39; 可以匹配任意字符串。
</pre>
<p><strong>示例&nbsp;3:</strong></p>
<pre><strong>输入:</strong>
s = &quot;cb&quot;
p = &quot;?a&quot;
<strong>输出:</strong> false
<strong>解释:</strong>&nbsp;&#39;?&#39; 可以匹配 &#39;c&#39;, 但第二个 &#39;a&#39; 无法匹配 &#39;b&#39;
</pre>
<p><strong>示例&nbsp;4:</strong></p>
<pre><strong>输入:</strong>
s = &quot;adceb&quot;
p = &quot;*a*b&quot;
<strong>输出:</strong> true
<strong>解释:</strong>&nbsp;第一个 &#39;*&#39; 可以匹配空字符串, 第二个 &#39;*&#39; 可以匹配字符串 &quot;dce&quot;.
</pre>
<p><strong>示例&nbsp;5:</strong></p>
<pre><strong>输入:</strong>
s = &quot;acdcb&quot;
p = &quot;a*c?b&quot;
<strong>输出:</strong> false</pre>
<div><div>Related Topics</div><div><li>贪心</li><li>递归</li><li>字符串</li><li>动态规划</li></div></div><br><div><li>👍 836</li><li>👎 0</li></div>