コード例 #1
0
ファイル: RabinKarpTests.cs プロジェクト: Madoxen/DS-ALG
 public void SimplePatternSearchTest()
 {
     KarpRabin.Find("I've seen things, you people wouldnt believe", "people");
 }
コード例 #2
0
ファイル: RabinKarpTests.cs プロジェクト: Madoxen/DS-ALG
 public void PatternSearchTest()
 {
     Assert.AreEqual(22, KarpRabin.Find("I've seen things, you people wouldnt believe", "people"));
 }