Skip to content

Instantly share code, notes, and snippets.

@anvaypatil
anvaypatil / TrieFun
Created June 18, 2015 03:28
Trie Data Structure
public class Trie {
private TrieNode root;
public Trie() {
this.root = new TrieNode(' ');
}
public boolean insert(String word,String meta) {
TrieNode iter=root;
TrieNode temp;