码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode_44

时间:2017-12-14 19:19:21      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:problem   wildcard   matching   color   else   rip   ret   class   log   

"""
@href: https://leetcode.com/problems/wildcard-matching/description/
@title: 44. Wildcard Matching
"""

class Solution(object):
    def isMatch(self, s, p):
        """
        :type s: str
        :type p: str
        :rtype: bool
        """
        
        ls, lp = len(s), len(p)
        if (ls + lp) == 0:
            return True

        s, p  = a + s, a + p
        ls, lp = ls+1, lp+1 

        dp = [[False]*(lp+1) for i in range(0, ls+1)] 
        dp[0][0] = True
        
        for i in range(1, ls+1):
            for j in range(1, lp+1):
                if p[j-1] == s[i-1] or p[j-1] in ?*:
                    dp[i][j] = dp[i-1][j-1]
                    if p[j-1] == *:
                        dp[i][j] = dp[i][j] or dp[i-1][j] or dp[i][j-1]
                else:
                    if p[j-1] == *:
                        dp[i][j] = dp[i][j-1]
        return dp[ls][lp]  

      我用的是二维 dp, 有人给出了 一维 dp 解法

 

leetcode_44

标签:problem   wildcard   matching   color   else   rip   ret   class   log   

原文地址:http://www.cnblogs.com/tmortred/p/8038874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!