LeetCode--10--hard--RegularExpressionMatching

这是一篇关于LeetCode中第10题的解析,题目难度为hard。作者分享了自己首次尝试解决该问题的经历,耗时较长,最终通过AC。虽然有更简洁的递归解决方案,但作者选择保留自己的原始思路,以展示问题解决过程中的逻辑思维锻炼。
摘要由CSDN通过智能技术生成

summary:

 1.以pattern为主分类讨论,遍历 pattern 可能的情况, case by case,
 2.递归出口: s 和 p正好遍历完成, 结果命中. corner case: s遍历完成,p还有尾巴,需要对p的尾巴进行删除操作
 3.当前p idx 为 '*' 或 '.' 或 'character' 分别做特殊处理, 注意当前为 "*" 时需要进行回溯遍历从0到N个的情况

ps: 代码实现比较复杂,第一次做花了将近俩小时才AC,参考答案有非常clean的递归写法,但仍然保留这个原始思路吧,也算是对逻辑思维的一种锻炼 2020.5.5

 

package myapp.kit.leetcode.top100liked;

/**
 *
 * 10
 * hard
 * https://leetcode.com/problems/regular-expression-matching/
 *
 * Given an input string (s) and a pattern (p), 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).
 *
 * Note:
 *
 * s could be empty and contains only lowercase letters a-z.
 * p could be empty and contains only lowercase letters a-z, and characters like . or *.
 * Example 1:
 *
 * Input:
 * s = "aa"
 * p = "a"
 * Output: false
 * Explanation: "a" does not match the entire string "aa".
 * Example 2:
 *
 * Input:
 * s = "aa"
 * p = "a*"
 * Output: true
 * Explanation: '*' means zero or more of the preceding element, 'a'. Therefore, by repeating 'a' once, it becomes "aa".
 * Example 3:
 *
 * Input:
 * s = "ab"
 * p = ".*"
 * Output: true
 * Explanation: ".*" means "zero or more (*) of any character (.)".
 * Example 4:
 *
 * Input:
 * s = "aab"
 * p = "c*a*b"
 * Output: true
 * Explanation: c can be repeated 0 times, a can be repeated 1 time. Therefore, it matches "aab".
 * Example 5:
 *
 * Input:
 * s = "mississippi"
 * p = "mis*is*p*."
 * Output: false
 *
 *
 * @author Dingsheng Huang
 * @version 1.0.0 2020/5/5 14:07
 */
public class RegularExpressionMatching {

    boolean result = false;
    public boolean isMatch(String s, String p) {
        process(s, 0, p, 0);
        return result;
    }

    // summary: 以pattern为主分类讨论,遍历 pattern 可能的情况, case by case,
    // 递归出口: s 和 p正好遍历完成, 结果命中. corner case: s遍历完成,p还有尾巴,需要对p的尾巴进行删除操作
    // 当前p idx 为 '*' 或 '.' 或 'character' 分别做特殊处理, 注意当前为 "*" 时需要进行回溯遍历从0到N个的情况

    private void process(String s, int sIdx, String p, int pIdx) {
        if (sIdx > s.length() - 1 && pIdx > p.length() - 1) {
            result = true;
            return;
        }
       if (pIdx > p.length() - 1 && sIdx <= s.length() - 1) {
           return;
       }
       // corner case
        if (pIdx <= p.length() - 1 && sIdx > s.length() - 1) {
            result = delete(p, pIdx);
            return;
        }

        char sCh = s.charAt(sIdx);
        char pCh = p.charAt(pIdx);
        if (pCh == '*') {
            if (p.charAt(pIdx - 1) == s.charAt(sIdx)) {
                int cn = 0;
                int temp = sIdx;
                while (temp < s.length() && s.charAt(temp) == sCh) {
                    cn++;
                    temp++;
                }
                for (int i = 0; i <= cn; i++) {
                    process(s, sIdx + i, p, pIdx + 1);
                    if (result == true) {
                        break;
                    }
                }
            } else if (p.charAt(pIdx - 1) == '.') {
                int cn = s.length() - sIdx;
                for (int i = 0; i <= cn; i++) {
                    process(s, sIdx + i, p, pIdx + 1);
                    if (result == true) {
                        break;
                    }
                }
            } else if (p.charAt(pIdx - 1) == '*') {
                process(s, sIdx, p, pIdx + 1);
            } else {
                process(s, sIdx, p, pIdx + 1);
            }
        } else if (pCh == '.' || pCh == sCh) {
            if ((pIdx + 1 <= p.length() - 1 && p.charAt(pIdx + 1) != '*') || pIdx == p.length() - 1) {
                process(s, sIdx + 1,  p, pIdx + 1);
            } else {
                process(s, sIdx, p, pIdx + 1);
            }
        } else {
            if (pIdx + 1 > p.length() - 1 || p.charAt(pIdx + 1) != '*') {
                return;
            }
            process(s, sIdx, p, pIdx + 1);
        }
    }

    private boolean delete(String p, int pIdx) {
        if (pIdx > p.length() - 1) {
            return true;
        }
        if (p.charAt(pIdx) == '*') {
            return delete(p, pIdx + 1);
        } else {
            if (pIdx + 1 > p.length() - 1 || p.charAt(pIdx + 1) != '*') {
                return false;
            }
            return delete(p, pIdx + 1);
        }
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值