clear method

void clear()

Clears the trie by deleting all entries.

Implementation

void clear() {
  root.deleteAll();
}