Skip to content
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

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

ICEBERG98
Copy link

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/

for (int i = 0; i < arr.length; i++) {
root.insertIntoTrie(root, arr[i]);
}
// System.out.println("Code checking");
Copy link

@juncevich juncevich Oct 23, 2018

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() {

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?

@juncevich
Copy link

Also, you may rebase you commits in one commit.

@pedrovgs
Copy link
Owner

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants