예제 #1
0
 public Searcher(byte[] kmp)
 {
     Kmp = new Kmp(kmp);
 }
예제 #2
0
 public Searcher(Kmp kmp)
 {
     Kmp = kmp;
 }