PREV INDEX NEXT

Author: Unknown
Subject: Trie values
Date: Wednesday, 22 Apr 2020, 11:55:30

If we use this form of a trie specified in the notes: struct trie {<VALUE>; struct trie *child[NLETTERS];}, how do we know when to put a value for a given node when constructing a trie from the specified board? In the months example, it made sense to me because we know what months we were dealing with. But here, I don't think we know what a word is.
PREV INDEX NEXT