Appearance
10. 正则表达式匹配
给你一个字符串 s 和一个字符规律 p,请你来实现一个支持 '.' 和 '' 的正则表达式匹配。
'.' 匹配任意单个字符
'' 匹配零个或多个前面的那一个元素
所谓匹配,是要涵盖 整个 字符串 s的,而不是部分字符串。
示例 1:
输入:s = "aa", p = "a"
输出:false
解释:"a" 无法匹配 "aa" 整个字符串。
示例 2:
输入:s = "aa", p = "a*"
输出:true
解释:因为 '*' 代表可以匹配零个或多个前面的那一个元素, 在这里前面的元素就是 'a'。因此,字符串 "aa" 可被视为 'a' 重复了一次。
示例 3:
输入:s = "ab", p = "."
输出:true
解释:"." 表示可匹配零个或多个('*')任意字符('.')。
提示:
1 <= s.length <= 20
1 <= p.length <= 20
s 只包含从 a-z 的小写字母。
p 只包含从 a-z 的小写字母,以及字符 . 和 *。
保证每次出现字符 * 时,前面都匹配到有效的字符
- 来源:力扣(LeetCode)
- 链接:https://leetcode.cn/problems/regular-expression-matching
javascript
/**
* @param {string} s
* @param {string} p
* @return {boolean}
*/
var isMatch = function(s, p){
if(p.length === 0) return s.length === 0
if(p.length === 1) return s.length === 1 && (s === p || p === '.')
if(p[1] === '*'){
return isMatch(s, p.slice(2)) || (s.length > 0 && (s[0] === p[0] || p[0] === '.') && isMatch(s.slice(1), p))
}else{
return s.length > 0 && (s[0] === p[0] || p[0] === '.') && isMatch(s.slice(1), p.slice(1))
}
}
var isMatch = function(s, p){
const sLen = s.length, pLen = p.length
const dp = Array.from({length: sLen + 1}, () => Array(pLen + 1).fill(false))
dp[0][0] = true
for(let i = 0; i <= sLen; i++){
for(let j = 1; j <= pLen; j++){
if(p[j - 1] === '*'){
dp[i][j] = dp[i][j - 2] || (i > 0 && dp[i - 1][j] && (s[i - 1] === p[j - 2] || p[j - 2] === '.'))
}else{
dp[i][j] = i > 0 && dp[i - 1][j - 1] && (s[i - 1] === p[j - 1] || p[j - 1] === '.')
}
}
}
return dp[sLen][pLen]
}
console.log(isMatch('aa', 'a') === false)
console.log(isMatch('aa', 'a*') === true)
console.log(isMatch('aa', 'aab*') === true)
console.log(isMatch('aa', '.*') === true)
console.log(isMatch("aab", "c*a*b") === true)
console.log(isMatch("ab", ".*c") === false)
console.log(isMatch("aaa", "a*b") === false)
console.log(isMatch("aaa", "a*a") === true)