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

g0701_0800.s0745_prefix_and_suffix_search.TrieNode Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g0701_0800.s0745_prefix_and_suffix_search;

@SuppressWarnings("java:S1104")
class TrieNode {
    public TrieNode[] children;
    public int weight;

    TrieNode() {
        this.children = new TrieNode[27];
        this.weight = 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy