28293031323334353637
matcher = new KarpRabin(pattern); System.out.println("Karp-Rabin Matcher:"); printOutput(matcher, textSample); matcher = new KnuthMorrisPratt(pattern); System.out.println("Knuth-Morris-Pratt Matcher:"); printOutput(matcher, textSample); }