Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pmd-exclude.properties
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ com.thealgorithms.others.MosAlgorithm=UselessMainMethod
com.thealgorithms.others.PageRank=UselessMainMethod,UselessParentheses
com.thealgorithms.others.PerlinNoise=UselessMainMethod,UselessParentheses
com.thealgorithms.others.QueueUsingTwoStacks=UselessParentheses
com.thealgorithms.others.Trieac=UselessMainMethod,UselessParentheses
com.thealgorithms.datastructures.trees.TrieAutocomplete=UselessMainMethod,UselessParentheses
com.thealgorithms.others.Verhoeff=UnnecessaryFullyQualifiedName,UselessMainMethod
com.thealgorithms.recursion.DiceThrower=UselessMainMethod
com.thealgorithms.searches.HowManyTimesRotated=UselessMainMethod
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.thealgorithms.others;
package com.thealgorithms.datastructures.trees;

// Java Program to implement Auto-Complete
// Feature using Trie
class Trieac {
class TrieAutocomplete {

// Alphabet size (# of symbols)
public static final int ALPHABET_SIZE = 26;
Expand Down
Loading