This is a follow-up to this question..
If I have a string text and a set of other strings I can use the Aho-Corasick algorithm to find the strings of the set in text.
Now I have a dictionary (set of strings) instead of text. I can organize the dictionary as a trie or hash table (or even BST). Can I apply the Aho-Corasick algorithm to find all strings of the set in the dictionary?