MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / KMP

Method KMP

Programs/KMP.java:6–10  ·  view source on GitHub ↗
(String string,String pattern)

Source from the content-addressed store, hash-verified

4 int[] lps;
5
6 KMP(String string,String pattern){
7 this.string = string;
8 this.pattern = pattern;
9 this.lps = new int[pattern.length()];
10 }
11
12
13 public int kmp() {

Callers

nothing calls this directly

Calls 1

lengthMethod · 0.80

Tested by

no test coverage detected