力扣——10. 正则表达式匹配

该博客介绍了如何使用Java解决LeetCode的10正则表达式匹配问题。通过分析思路和代码实现,讲解了如何判断字符串是否符合给定的正则表达式模式。核心在于递归地检查第一个字符和第二个字符(如果有)以及星号(*)的使用情况。
摘要由CSDN通过智能技术生成

1.题目

 

2.思路

首先字符串s.length()>0,或者判断s.isEmpty();

可以分两步走,第一部分主要讨论第一个正则符号的可能性,利用&&,||表达式

情况1:可能是字符,那就看第二个符号;pattern.charAt(0)==text.charAt(0);

情况2:如果是".",则也需要看第二个字符;pattern.charAt(0)=='.'

第二部分就是考虑第二个字符的可能性。(pattern.length()>2)

情况1:如果第二个字符是“*”(pattern.charAt(1)=='*'),则判断第一个正则表达式的字符到底是.还是字符。利用isMatch函数进行匹配first_match && isMatch(text.substring(1),pattern)

情况2:如果不是“*”,再看是否和text的文本匹配first_match&&isMatch(pattern.substring(1),text.substring(1))

3.代码

public class Solution {
    public boolean isMatch(String text, String pattern) {
    	if(pattern.isEmpty()) return text.isEmpty();
        boolean first_match=(!text.isEmpty() &&(pattern.charAt(0) == text.charAt(0) || pattern.charAt(0)=='.'));
        if(pattern.length()>=2 && pattern.charAt(1)=='*'){
            return (isMatch(text,pattern.substring(2))||
            (first_match && isMatch(text.substring(1),pattern)));
        }  
        else{
            return first_match&&isMatch(pattern.substring(1),text.substring(1));
    }
}
}

参考链接:(101条消息) LeetCode:10 正则表达式匹配(Java)_INC随我的博客-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值