【學習筆記】字串匹配
暴力匹配(BF)演算法
暴力匹配(BF)演算法是普通的模式匹配演算法。模式匹配是模式串
P
P
P在主串
T
T
T中的定位運算。
BF演算法的思想就是將模式串
P
P
P的第一個字元與主串
T
T
T的第一個字元進行匹配,若相等,則繼續比較
P
P
P的第二個字元和
T
T
T的第二個字元;若不相等,則比較
P
P
P的第二個字元和
T
T
T的第一個字元,依次比較,直到得出最後的匹配結果。
Rabin-Karp(RK)演算法
RK演算法引入了雜湊值計算。如果兩個字串的雜湊值不相同,則它們肯定不相同;如果它們雜湊值相同,它們不一定相同。
RK演算法的思想就是將模式串
P
P
P(長度為
k
k
k)的雜湊值與主串
T
T
T中每一個長度為
k
k
k的子串的雜湊值相比較,只保留雜湊值相同的子串進行匹配。
Knuth-Morria-Pratt(KMP)演算法
KMP演算法與BF演算法類似,但是當某個字元失配時,並不是跳回模式串
P
P
P的開頭,主串
T
T
T也不需要回溯,而是根據next陣列儲存的數值,主串
T
T
T保持不動,模式串
P
P
P跳到
n
e
x
t
[
j
]
=
n
next [j]=n
next[j]=n處,這樣就可以跳過模式串
P
P
P的前
n
n
n個字元。
現有模式串“ABCDABD”,
- “A”的字首和字尾為空集,共用長度為0;
- “AB”的字首為[A],字尾為[B],共用長度為0;
- “ABC”的字首為[A, AB],字尾為[BC, C],共用長度為0;
- “ABCD”的字首為[A, AB, ABC],字尾為[BCD, CD, D],共用長度為0;
- “ABCDA”的字首為[A, AB, ABC, ABCD],字尾為[BCDA, CDA, DA, A],共用長度為1;
- “ABCDAB”的字首為[A, AB, ABC, ABCD, ABCDA],字尾為[BCDAB, CDAB, DAB, AB, B],共用長度為2;
- “ABCDABD”的字首為[A, AB, ABC, ABCD, ABCDA, ABCDAB],字尾為[BCDABD, CDABD, DABD, ABD, BD, D],共用長度為0;
因此可得部分匹配值為:
當D與空格不匹配時,前面的“ABCDAB”是匹配的,查表可知,最後一個匹配字元B對應的部分匹配值為2,因此移動位數可由下式計算:
\qquad\qquad
移動位數 = 已匹配字元數 - 對應的部分匹配值
Boyer-Moore(BM)演算法
BM演算法從模式串 P P P的尾部開始匹配,該演算法定義了兩個規則:
- 壞字元規則:當主串 T T T中的某個字元跟模式串 P P P的某個字元不匹配時,我們稱文字串中的這個失配字元為壞字元,此時模式串 P P P需要向右移動,移動的位數 = 壞字元在模式串中的位置 - 壞字元在模式串中最右出現的位置。此外,如果"壞字元"不包含在模式串之中,則最右出現位置為-1。
- 好字尾規則:當字元失配時,後移位數 = 好字尾在模式串中的位置 - 好字尾在模式串上一次出現的位置,且如果好字尾在模式串中沒有再次出現,則為-1。
每次後移這兩個規則之中的較大值。這兩個規則的移動位數,只與模式串有關,與主串無關。
-
此時無好字尾,按壞字元規則,當前與壞字元“P”進行匹配的模式串字元“E”位於模式串第6位,壞字元“P”在模式串中最右出現的位置是第4位,因此向右移動位數 = 6 - 4 = 2,即令 主串中的當前壞字元 與 模式串中最右出現的壞字元 對齊。
-
當“I”與“A”不匹配,此時好字尾有[“MPLE”、“PLE”、“LE”、“E”],根據好字尾規則,所有的好字尾中,只有 位於第6位的好字尾“E” 在模式串的第0位又一次出現,因此後移位數 = 6 - 0 = 6。而根據壞字元規則,後移位數 = 2 - (-1) = 3。因此使用較大的後移位數6。
程式碼實現
import java.util.Arrays;
public class StringMatch {
public static int bruteForce(String target, String pattern) {
if (target == null || pattern == null)
return -1;
char[] st = target.toCharArray();
char[] sp = pattern.toCharArray();
int tLen = st.length, pLen = sp.length;
if (tLen == 0 || pLen == 0 || tLen < pLen)
return -1;
int i = 0, j = 0;
while (i < tLen && j < pLen) {
if (st[i] == sp[j]) {
i++;
j++;
} else {
i -= j - 1;
j = 0;
}
}
if (j == pLen)
return i - j;
return -1;
}
private static int hash(String str) {
int prime = 11113; // 一般取質數
int hashCode = 0;
for (int i = 0; i < str.length(); i++)
hashCode = ((hashCode << 5) + str.charAt(i)) % prime;
return hashCode;
}
public static int RK(String target, String pattern) {
if (target == null || pattern == null)
return -1;
int tLen = target.length(), pLen = pattern.length();
if (tLen == 0 || pLen == 0 || tLen < pLen)
return -1;
int hashCode = hash(pattern);
String subStr;
for (int i = 0; i <= tLen - pLen; i++) {
subStr = target.substring(i, i + pLen);
if (hashCode == hash(subStr) && bruteForce(subStr, pattern) == 0)
return i;
}
return -1;
}
private static int[] badTable(char[] sp, int len) {
int[] bad_table = new int[256]; // ASCII表中的256個字元對應的移動距離
Arrays.fill(bad_table, -1);
for (int i = 0; i < len - 1; i++)
bad_table[sp[i]] = len - 1 - i;
return bad_table;
}
private static int[] goodTable(char[] sp, int len) {
int[] suffix = new int[len];
suffix[len-1] = len;
for (int i = len - 2, j = len - 2; i >= 0; i--) {
j = i;
while (j >= 0 && sp[j] == sp[len - 1 - i + j])
j--;
suffix[i] = i - j;
}
int[] good_table = new int[len];
Arrays.fill(good_table, len);
for (int i = len - 1, j = 0; i >= 0; i--) {
if (suffix[i] == i + 1) {
for (; j < len - 1 - i; j++)
if (good_table[j] == len)
good_table[j] = len - 1 - i;
}
}
for (int i = 0; i <= len - 2; i++) {
good_table[len - 1 - suffix[i]] = len - 1 - i;
}
return good_table;
}
public static int BM(String target, String pattern) {
if (target == null || pattern == null)
return -1;
int tLen = target.length(), pLen = pattern.length();
if (tLen == 0 || pLen == 0 || tLen < pLen)
return -1;
char[] st = target.toCharArray();
char[] sp = pattern.toCharArray();
int[] bad_table = badTable(sp, pLen);
int[] good_table = goodTable(sp, pLen);
int j, i = 0;
while (i <= tLen - pLen) {
j = pLen - 1;
while (j >= 0 && st[i+j] == sp[j])
j--;
if (j < 0)
return i;
i += Math.max(good_table[j], bad_table[st[i+j]] - (pLen - 1 - i));
}
return -1;
}
private static int[] kmpNext(String pattern, int len) {
int[] next = new int[len];
next[0] = 0; // 已匹配字串長度為1,部分匹配值為0
for (int i = 1, j = 0; i < len; i++) {
while (j > 0 && pattern.charAt(i) != pattern.charAt(j))
j = next[j-1];
if (pattern.charAt(i) == pattern.charAt(j))
j++;
next[i] = j;
}
return next;
}
public static int KMP(String target, String pattern) {
if (target == null || pattern == null)
return -1;
int tLen = target.length(), pLen = pattern.length();
if (tLen == 0 || pLen == 0 || tLen < pLen)
return -1;
int[] next = kmpNext(pattern, pLen);
for (int i = 0, j = 0; i < tLen; i++) {
while (j > 0 && target.charAt(i) != pattern.charAt(j))
j = next[j-1];
if (target.charAt(i) == pattern.charAt(j))
j++;
if (j == pLen)
return i - j + 1;
}
return -1;
}
}
效能測試
相關文章
- KMP字串匹配學習筆記KMP字串匹配筆記
- 字串學習筆記字串筆記
- 字串家族 學習筆記字串筆記
- 學習筆記——字串方法整理筆記字串
- C#字串學習筆記C#字串筆記
- ruby 字串學習筆記1字串筆記
- ruby 字串學習筆記3字串筆記
- ruby字串學習筆記4字串筆記
- ruby字串學習筆記5字串筆記
- 學習筆記——正則匹配方法整理筆記
- C/C++學習筆記:字串C++筆記字串
- 【Python學習】學習筆記 14-15 字串Python筆記字串
- ASP.NET MVC學習筆記:(一)路由匹配ASP.NETMVC筆記路由
- Python學習筆記 - 字串,數字Python筆記字串
- Qt學習筆記(五)QString 字串QT筆記字串
- Python學習筆記-字串及操作Python筆記字串
- ES6學習筆記(一)【變數,字串】筆記變數字串
- Python 學習筆記(6)— 字串格式化Python筆記字串格式化
- Object C學習筆記9-字串NSMutableStringObject筆記字串
- 單模式匹配 KMP 演算法 簡易版學習筆記模式KMP演算法筆記
- Python3學習筆記-字串和編碼Python筆記字串
- Python學習筆記:第3天 字串的操作Python筆記字串
- numpy的學習筆記\pandas學習筆記筆記
- Solidity語言學習筆記————18、字串和函式Solid筆記字串函式
- Object C學習筆記8-字串NSString之二Object筆記字串
- Object C學習筆記7-字串NSString之一Object筆記字串
- IT學習筆記筆記
- 學習筆記筆記
- 【學習筆記】數學筆記
- 字串匹配字串匹配
- ES6學習筆記4--字串的擴充套件筆記字串套件
- 【批處理學習筆記】第十九課:字串合併筆記字串
- Swift學習筆記第三篇(字串,陣列,集合,字典)Swift筆記字串陣列
- 《JAVA學習指南》學習筆記Java筆記
- Elasticsearch學習筆記Elasticsearch筆記
- Scala學習筆記筆記
- MySql學習筆記MySql筆記
- jQuery 學習筆記jQuery筆記