An implementation of Cedict using the prefix tree data structure.
Each node (except for the root) contains a character, and contains a list of
entries formed by the characters in the path from the root to the node.
It uses the traditional attribute as the lookup key into the tree.
An implementation of Cedict using the prefix tree data structure. Each node (except for the root) contains a character, and contains a list of entries formed by the characters in the path from the root to the node. It uses the traditional attribute as the lookup key into the tree.