use of org.trie4j.doublearray.TailDoubleArray in project trie4j by takawitter.
the class Issue_031 method test_TailDoubleArray.
@Test
public void test_TailDoubleArray() throws Throwable {
Trie trie = new PatriciaTrie();
insertLines(trie, FILE_NAME);
Trie da = new TailDoubleArray(trie);
Assert.assertFalse(trie.contains("you"));
Assert.assertFalse(da.contains("you"));
}
Aggregations