
org.psjava.ds.tree.trie.TrieNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psjava Show documentation
Show all versions of psjava Show documentation
Problem Solving Library for Java
package org.psjava.ds.tree.trie;
public interface TrieNode {
int getChildCount();
boolean hasChild(T ch);
TrieNode getChild(T ch, TrieNode def);
TrieNode getChild(T ch);
Iterable getEdges();
void putChild(T ch, TrieNode node);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy