I'm trying to make a tree of maps (or just have values of a map point to another map), but I'm not too sure how to approach this. I found a discussion about this: http://bytes.com/topic/c/answers/131310-how-build-recursive-map but I'm a little confused on what's going on there.
For example, my key is a char, and my value is the next map. Here's the hypothetical declaration:
map< char, map< char, map< char.......>>>>>>>>>> root_map;