zoukankan      html  css  js  c++  java
  • leetcode Wildcard Matching greedy algrithm

    The recursive program will result in TLE like this:

    class Solution {
     public:
      bool isMatch(const char *s, const char *p) {
        // IMPORTANT: Please reset any member data you declared, as
        // the same Solution instance will be reused for each test case.
        if (*s == *p && *s == '')
          return true;
        if (*p == '?' || *s == *p)
          return isMatch(s + 1, p + 1);
        else if (*p == '*') {
          int i;
          for (i = 0; *(s + i); ++i)
            if (isMatch(s + i, p + 1))
              return true;
          if (isMatch(s + i, p + 1))
            return true;
          
          return false;
        }
        else if (*p != *s)
          return false;
      }
    };


    So it's necessary to write an non-recursive program. The key point is to match the '*' in p string. We could attempt to match '*' with 0...n characters in s, i.e., the character after '*' maybe match any position in s regardless a series of characters in s. Take notice that consecutive '*'s are equal to one '*'. Based on that, a lengthy code is written as :

    class Solution {
     public:
      bool isMatch(const char *s, const char *p) {
        // IMPORTANT: Please reset any member data you declared, as
        // the same Solution instance will be reused for each test case.
        bool star = false, staremerge = false;
        const char *str = s, *ptr = p, *ss = s, *pp = p;
        for (str = ss, ptr = pp; *str && *ptr || *str == '' && *ptr == '*'; ++str, ++ptr) {
          if (*ptr == '*') {
            star = staremerge = true;
            while (*ptr == '*')
              ++ptr;
            if (*ptr == '')
              return true;
            ss = str;
            pp = ptr;
            --str;
            --ptr;
          }  
          else {
            if (!star) {
              if( !staremerge ) {
                if (*str != *ptr && *ptr != '?' ||*(ptr + 1) == '' && *(str + 1) != '')  
                  return false;
              }
              else {
                if (*str != *ptr && *ptr != '?' ||*(ptr + 1) == '' && *(str + 1) != '') {
                  str = ss++;
                  ptr = pp - 1;
                  star = true;
                }
                  
              }
            }
            else if (star) {
              if ( *str != *ptr && *ptr != '?') {
                ss = str + 1;  
                --ptr;
              }
              else {
                star = false;
                if (*(ptr + 1) == '' && *(str + 1) != '') {
                  str = ss++;
                  ptr = pp - 1;
                  star = true;
                }            
              }
            }
          }
        }
        if (*str == *ptr && *str == '')
          return true;
        else
          return false;
      }
    };


    Some suggestions about this code: 

    1. There is no need to refresh the status of star, staremerge. Only one star is enough, because the character(for example, 'a') always needs to match some 'a' in s. Matching the former 'a' is better than the latter 'a' in s as is illustrated in the figure. I.e., there is no need to record the matching range for every '*', the latest '*' has the largest range of choice. 


    2. sbegin is refreshed when mismatch occurs and pbegin is refreshed when meeting new '*';

    3. Focusing on s is better than handling the two strings at the same time. 


    So the final concise code is like:


    class Solution {
     public:
      bool isMatch(const char *s, const char *p) {
        // IMPORTANT: Please reset any member data you declared, as
        // the same Solution instance will be reused for each test case.
        const char *sbegin = s, *pbegin = p, *str = s, *ptr = p;
        bool star = false;
        for (str = s, ptr = p; *str || *ptr == '*'; ++str, ++ptr) {
          if (*ptr == '*') {
            star = true;
            while (*ptr == '*') 
              ++ptr;
            if (*ptr == '')
              return true;
            pbegin = ptr--;
            sbegin = str--;
          }
          else if (*str != *ptr && *ptr != '?'){
            if (!star)
              return false;
            str = sbegin++;
            ptr = pbegin - 1;
          }
        }
        return *ptr == '';  
      }
    };



  • 相关阅读:
    锋利的jQuery第2版学习笔记4、5章
    锋利的jQuery第2版学习笔记1~3章
    关于盒模型的理解
    CSS3秘笈第三版涵盖HTML5学习笔记13~17章
    CSS3秘笈第三版涵盖HTML5学习笔记9~12章
    CSS3秘笈第三版涵盖HTML5学习笔记6~8章
    CSS3秘笈第三版涵盖HTML5学习笔记1~5章
    锁(1):spin_lock & mutex_lock的区别? .
    休眠(1):sleep和wait的区别
    C++(1):error: invalid conversion from ‘void (*)()’ to ‘void (*)(int)
  • 原文地址:https://www.cnblogs.com/james1207/p/3395436.html
Copyright © 2011-2022 走看看