类 KMPMatch
- java.lang.Object
-
- org.meteoinfo.common.io.KMPMatch
-
@Immutable public class KMPMatch extends Object
Knuth-Morris-Pratt Algorithm for Pattern Matching.
-
-
构造器概要
构造器 构造器 说明 KMPMatch(byte[] match)Constructor
-
-
-
方法详细资料
-
getMatchLength
public int getMatchLength()
-
indexOf
public int indexOf(byte[] data, int start, int max)Finds the first occurrence of match in data.- 参数:
data- search in this byte blockstart- start at data[start]max- end at data[start+max]- 返回:
- index into data[] of first match, else -1 if not found.
-
-