1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
| public class Jz19_2 { public static void main(String[] args) { final Jz19_2 jz19 = new Jz19_2(); jz19.test("Test22", "aaa", "ab*a", false);
jz19.test("Test01", "", "", true); jz19.test("Test02", "", ".*", true); jz19.test("Test03", "", ".", false); jz19.test("Test04", "", "c*", true); jz19.test("Test05", "a", ".*", true); jz19.test("Test06", "a", "a.", false); jz19.test("Test07", "a", "", false); jz19.test("Test08", "a", ".", true); jz19.test("Test09", "a", "ab*", true); jz19.test("Test10", "a", "ab*a", false); jz19.test("Test11", "aa", "aa", true); jz19.test("Test12", "aa", "a*", true); jz19.test("Test13", "aa", ".*", true); jz19.test("Test14", "aa", ".", false); jz19.test("Test15", "ab", ".*", true); jz19.test("Test16", "ab", ".*", true); jz19.test("Test17", "aaa", "aa*", true); jz19.test("Test18", "aaa", "aa.a", false); jz19.test("Test19", "aaa", "a.a", true); jz19.test("Test20", "aaa", ".a", false); jz19.test("Test21", "aaa", "a*a", true); jz19.test("Test22", "aaa", "ab*a", false); jz19.test("Test23", "aaa", "ab*ac*a", true); jz19.test("Test24", "aaa", "ab*a*c*a", true); jz19.test("Test25", "aaa", ".*", true); jz19.test("Test26", "aab", "c*a*b", true); jz19.test("Test27", "aaca", "ab*a*c*a", true); jz19.test("Test28", "aaba", "ab*a*c*a", false); jz19.test("Test29", "bbbba", ".*a*a", true); jz19.test("Test30", "bcbbabab", ".*a*a", false); }
private void test(String testName, String str, String pattern, boolean expired) { if (match(str, pattern) == expired) { return; } System.out.printf("%s 结果不对\n", testName); }
public boolean match(String str, String pattern) {
if (str == null && pattern == null) { return true; } if (str == null || pattern == null) { return false; }
final char[] strArr = str.toCharArray(); final char[] patternArr = pattern.toCharArray(); int strIndex = 0; int patternIndex = 0; return matchCore(strArr, strIndex, patternArr, patternIndex); }
private boolean matchCore(char[] strArr, int strIndex, char[] patternArr, int patternIndex) {
if (isEnd(strArr, strIndex) && isEnd(patternArr, patternIndex)) { return true; }
if (!isEnd(strArr, strIndex) && isEnd(patternArr, patternIndex)) { return false; }
if (isEnd(strArr, strIndex) && !isEnd(patternArr, patternIndex)) { if (!isEnd(patternArr, patternIndex + 1)) { return matchCore(strArr, strIndex, patternArr, patternIndex + 2); } return false; }
if (isEnd(patternArr, patternIndex + 1)) { if (!isEnd(strArr, strIndex + 1)) { return false; }
return patternArr[patternIndex] == '.' || patternArr[patternIndex] == strArr[strIndex]; }
final char secondPatternChar = patternArr[patternIndex + 1]; if ((secondPatternChar != '*')) { if (patternArr[patternIndex] == '.' || patternArr[patternIndex] == strArr[strIndex]) { return matchCore(strArr, strIndex + 1, patternArr, patternIndex + 1); } return false; }
if (patternArr[patternIndex] == '.' || patternArr[patternIndex] == strArr[strIndex]) { return matchCore(strArr, strIndex, patternArr, patternIndex + 2) || matchCore(strArr, strIndex + 1, patternArr, patternIndex); } else { return matchCore(strArr, strIndex, patternArr, patternIndex + 2); } }
private final char END = '\0';
private boolean isEnd(char[] arr, int index) { return END == indexArr(arr, index); }
private char indexArr(char[] arr, int index) { if (index < arr.length) { return arr[index]; } return END; }
}
|