All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0201_0300.s0208_implement_trie_prefix_tree.TrieNode Maven / Gradle / Ivy

package g0201_0300.s0208_implement_trie_prefix_tree;

@SuppressWarnings("java:S1104")
public class TrieNode {
    // Initialize your data structure here.
    public TrieNode[] children;
    public boolean isWord;

    public TrieNode() {
        children = new TrieNode[26];
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy