public bool Equals(Node obj) { if (obj != null && obj.Letter == this.Letter) { return true; } return false; }
public Trie() { root = new Node(' '); }