Trie constructor

Trie()

Implementation

Trie() {
  _head = new _TrieNode(null);
}