摘要: public class Solution { public boolean isMatch(String s, String p) { int length1 = s.length(); int length2 = p.length(); if (l... 阅读全文
posted @ 2016-01-10 15:52 Weizheng_Love_Coding 阅读(89) 评论(0) 推荐(0) 编辑
摘要: public class Solution { public boolean isMatch(String s, String p) { if (p.length() == 0) { return s.length() == 0; } ... 阅读全文
posted @ 2016-01-10 15:52 Weizheng_Love_Coding 阅读(127) 评论(0) 推荐(0) 编辑