我正在研究TreeDecomposition,樹中的每個節點可以有多個圖中的頂點。 現在,我試圖找到第一個節點其中包含頂點u從樹的根。 int Tree::traversing(Node* node, int u){
//search in current node
int j = node->point_in_bag(u); //this function returns p
比方說,我有一個簡單的二進制樹節點類,如下所示: public class BinaryTreeNode {
public String identifier = "";
public BinaryTreeNode parent = null;
public BinaryTreeNode left = null;
public BinaryTreeNode