Hi, I am writing a program that uses post-order breadth first tree-traversal to give me a path navigating from one point in my house to another. Here is a map of my house: http://postimage.org/image/3vq80wdkx/. Here is the tree that I need to traverse and list all the possibilites of: http://postimage.org/image/nlbv9dp03/. For example, the possibilites are:
AB
ABC
ABCD
ABCDE
ABCF
ABCFI
ABCFIG
ABCFIH
How do I implement this in C++?