Design pattern for isomorphic trees
- by Peregring-lk
I want to create a data structure to work with isomorphic tree. I don't search for a "algorithms" or methods to check if two or more trees are isomorphic each other. Just to create various trees with the same structure.
Example:
2 - - - - - - - 'a' - - - - - - - 3.5
/ \ / \ / \
3 3 'f' 'y' 1.0…