-
-
Notifications
You must be signed in to change notification settings - Fork 799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added The Trie Data Structure #46
base: master
Are you sure you want to change the base?
Conversation
Fixing of changes cused by CheckStyle fix in trie.java
for (int i = 0; i < arr.length; i++) { | ||
root.insertIntoTrie(root, arr[i]); | ||
} | ||
// System.out.println("Code checking"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why you do not delete this commented code?
|
||
public class TrieTest { | ||
@Before | ||
public void setUp() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is work without this method, is not it?
Also, you may rebase you commits in one commit. |
Hi @ICEBERG98 thank you so much for your contribution. Before starting with the code review I was wondering if you could update the readme adding your solution to the list and also apply @juncevich suggestions 😃 Thank you in advance! |
Trie is a tree like data structure used for String Searching and pattern matching.
It's applications include Search Engines and AutoComplete Features.
More about Trie-
https://www.hackerearth.com/practice/data-structures/advanced-data-structures/trie-keyword-tree/tutorial/