Skip to content

Instantly share code, notes, and snippets.

// TemplateContext.ts
export interface TemplateContext {
a: string;
b: string;
c: string;
}
----------------------------------------------------------------------------------------------------
// App.component.ts
@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;