Problem
1. Write a method that will traverse a trie and print out all its words in alphabetical order.
2. Write a method that will traverse a trie and print out all its words, with the order determined first by the length of the word, with shorter words first, and, second, by alphabetical order for words of the same length.
3. Write a method that will delete a word from a trie.