(String[] args)
| 73 | } |
| 74 | |
| 75 | public static void main(String[] args) { |
| 76 | AhoCorasick ac = new AhoCorasick(); |
| 77 | ac.addKeyword("he"); |
| 78 | ac.addKeyword("she"); |
| 79 | ac.addKeyword("hers"); |
| 80 | ac.addKeyword("his"); |
| 81 | |
| 82 | ac.buildFailureLinks(); |
| 83 | |
| 84 | List<String> matches = ac.search("ushers"); |
| 85 | System.out.println("Matches found: " + matches); |
| 86 | } |
| 87 | } |
nothing calls this directly
no test coverage detected