博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode - Regular Expression Matching
阅读量:6278 次
发布时间:2019-06-22

本文共 2069 字,大约阅读时间需要 6 分钟。

题目:

Regular Expression Matching

Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire input string (not partial).
The function prototype should be:
bool isMatch(const char *s, const char *p)
Some examples:
isMatch("aa","a") → false
isMatch("aa","aa") → true
isMatch("aaa","aa") → false
isMatch("aa", "a*") → true
isMatch("aa", ".*") → true
isMatch("ab", ".*") → true
isMatch("aab", "c*a*b") → true

思路:

用动态规划,dp[i][j]表示s[0...i-1]和p[0...j-1]是否匹配。这里有个辅助函数isCharMatch()来判断单独的个体字符是否匹配,注意'.'匹配任何字符. 这里需要处理的特殊情况就是当p中字符为'*'的情况。

1. 当*表示0时,我们只需要得到dp[i][j-2]的值即可。

2. 当*表示1时,我们需要判断s.charAt(i - 1), p.charAt(j-2)是否相等,若相等的话,则dp[i][j]其值为dp[i-1][j-2]。

3. 当*表示>1时,我们需要判断s.charAt(i - 1), p.charAt(j-2)是否相等,若相等的话,则dp[i][j]其值为dp[i-1][j]。

package dp;public class RegularExpressionMatching {    public boolean isMatch(String s, String p) {        int m = s.length();        int n = p.length();        boolean[][] dp = new boolean[m + 1][n + 1];                dp[0][0] = true;        for (int i = 1; i <= n; ++i)            dp[0][i] = p.charAt(i - 1) == '*' ? dp[0][i - 2] : false;        for (int i = 1; i <= m; ++i) {            for (int j = 1; j <= n; ++j) {                if (p.charAt(j - 1) == '*') {                    dp[i][j] = dp[i][j-2] ||                             (isCharMatch(s.charAt(i - 1), p.charAt(j-2)) && dp[i-1][j-2]) ||                             (isCharMatch(s.charAt(i - 1), p.charAt(j-2)) && dp[i-1][j]);                } else {                    dp[i][j] = isCharMatch(s.charAt(i - 1), p.charAt(j - 1)) && dp[i-1][j-1];                }            }        }                return dp[m][n];    }        public boolean isCharMatch(char a, char b) {        if (b == '.') return true;        return a == b;    }        public static void main(String[] args) {        // TODO Auto-generated method stub        RegularExpressionMatching r = new RegularExpressionMatching();        System.out.println(r.isMatch("aaa", "a*"));    }}

 

转载地址:http://nvyva.baihongyu.com/

你可能感兴趣的文章
vmware安装centOs操作系统配置网络的一系列问题
查看>>
jquery基本选择器
查看>>
2天时间终于把ntopng装好了
查看>>
Mac配置环境变量注意点
查看>>
Lua string.gsub (s, pattern, repl [, n])
查看>>
智能聊天机器人实现(源代码+解析)
查看>>
微表面分布函数(Microfacet Distribution Function)确切含义
查看>>
轻松python文本专题-字符与字符值转换
查看>>
JAVA-MyEclipse第一个实例
查看>>
iOS 9 学习系列: Xcode Code Coverage
查看>>
休眠模式的开关闭
查看>>
Variable number of arguments (Varargs)
查看>>
jquery.ajax之beforeSend方法使用介绍
查看>>
usb键鼠驱动分析【钻】
查看>>
shell中while循环的陷阱
查看>>
Java 系书籍,,,,,,,,,,,,,
查看>>
binlog 轻松的找到没有及时提交的事物(infobin工具
查看>>
windows下如何创建没有名字的.htaccess文件
查看>>
关于Unity中物体分别在本地和世界坐标系对应方向的移动
查看>>
引用外部jquery.js
查看>>