g0701_0800.s0745_prefix_and_suffix_search.TrieNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
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;
}
}