这道题目自己觉得挺难。 import java.util.*; public class Solution { public boolean match (String s, String p) { if (s == null || p == null) return false; return doMatch(s, 0, p, 0); } private boolean doMatch(String s, int i, String p, int j) { if (i == s.length...