File tree Expand file tree Collapse file tree
src/main/java/com/thealgorithms/datastructures/trees Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ com.thealgorithms.others.MosAlgorithm=UselessMainMethod
8686com.thealgorithms.others.PageRank =UselessMainMethod,UselessParentheses
8787com.thealgorithms.others.PerlinNoise =UselessMainMethod,UselessParentheses
8888com.thealgorithms.others.QueueUsingTwoStacks =UselessParentheses
89- com.thealgorithms.others.Trieac =UselessMainMethod,UselessParentheses
89+ com.thealgorithms.datastructures.trees.TrieAutocomplete =UselessMainMethod,UselessParentheses
9090com.thealgorithms.others.Verhoeff =UnnecessaryFullyQualifiedName,UselessMainMethod
9191com.thealgorithms.recursion.DiceThrower =UselessMainMethod
9292com.thealgorithms.searches.HowManyTimesRotated =UselessMainMethod
Original file line number Diff line number Diff line change 1- package com .thealgorithms .others ;
1+ package com .thealgorithms .datastructures . trees ;
22
33// Java Program to implement Auto-Complete
44// Feature using Trie
5- class Trieac {
5+ class TrieAutocomplete {
66
77 // Alphabet size (# of symbols)
88 public static final int ALPHABET_SIZE = 26 ;
You can’t perform that action at this time.
0 commit comments