Leetcode 44. Wildcard Matching [hard][java]

本文介绍了一种使用双指针技巧处理特殊字符'*'的字符串匹配算法。该算法通过记住'*'出现的位置及其匹配字符串的位置来提高匹配效率。在完成整个字符串匹配后,确保结束位置也匹配。适用于需要高效字符串匹配的应用场景。
摘要由CSDN通过智能技术生成

在这里插入图片描述

Example
在这里插入图片描述
在这里插入图片描述

Consideration

  1. Use two pointer to remember the position of a ‘*’ occurs in the p and the matched position of the string s
  2. after matching the whole string s, we should continue iterate p to guarantee the ending is matched as well.

Solution

class Solution {
    public boolean isMatch(String s, String p) {
        int i = 0;
        int j = 0;
        int lastPosP = -1;
        int lastPosS = -1;
        
        while(j < s.length()) {
            if(i < p.length() && (s.charAt(j) == p.charAt(i) || p.charAt(i) == '?')) {
                ++i;
                ++j;
            } else if(i < p.length() && p.charAt(i) == '*') {
                //remember the match position and assuming * matches empty string;
                lastPosS = j;
                lastPosP = i++;
            } else if(lastPosS > -1) {
                //'*' matches the current character in string s
                j = ++lastPosS;
                i = lastPosP+1;
            } else {
                return false;
            }
        }
        
        while(i < p.length()) {
            if(p.charAt(i) != '*') {
                break;
            }
            ++i;
        }
    
        return i == p.length();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值