0

我正在研究一个涉及表达式树的遗传编程问题。我使用的树数据结构仅在深度优先和广度优先遍历方面提供访问器。我只使用这些提供的方法从树中恢复表达式的有效方法是什么?

4

1 回答 1

0

Ok, problem solved by using a recursive BFS search. Basically the function calls itself on the subtrees unless the subtree is a terminal node, in which case the value of the node is returned.

于 2013-03-29T13:08:25.043 回答