Wildcard Matching

Implement wildcard pattern matching with support for '?' and '*'.

'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).

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", "*") → true
isMatch("aa", "a*") → true
isMatch("ab", "?*") → true
isMatch("aab", "c*a*b") → false

看了一份C++的代码
 bool isMatch(const char *s, const char *p) {
        const char* star=NULL;
        const char* ss=s;
        while (*s){
            //advancing both pointers when (both characters match) or ('?' found in pattern)
            //note that *p will not advance beyond its length 
            if ((*p=='?')||(*p==*s)){s++;p++;continue;} 

            // * found in pattern, track index of *, only advancing pattern pointer 
            if (*p=='*'){star=p++; ss=s;continue;} 

            //current characters didn't match, last pattern pointer was *, current pattern pointer is not *
            //only advancing pattern pointer
            if (star){ p = star+1; s=++ss;continue;} 

           //current pattern pointer is not star, last patter pointer was not *
           //characters do not match
            return false;
        }

       //check for remaining characters in pattern
        while (*p=='*'){p++;}

        return !*p;  
    }

在此基础上改写的Java版本
public class Solution {
	public  boolean isMatch(String s, String p){
		int ss=0,pp=0,match=0;
		int start=-1;
		while(ss<s.length()){
			if(pp<p.length()&&(p.charAt(pp)=='?'||p.charAt(pp)==s.charAt(ss))){pp++;ss++;}
			else if(pp<p.length()&&p.charAt(pp)=='*')
			{
				start=pp++;
//				ss++;
                match=ss;
			}
			else if(start!=-1)
			{
				pp=start+1;
				ss=match;
				match++;
			}
			else return false;
		}
		while(pp<p.length()&&p.charAt(pp)=='*')
			pp++;
		return pp==p.length();
	}
}

不过好像没有考虑s中也有*/?的情况

参考:http://xoomer.virgilio.it/acantato/dev/wildcard/wildmatch.html#A_first_algorithm
https://leetcode.com/discuss/10133/linear-runtime-and-constant-space-solution
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值