我正在尝试编写返回具有相同标签的所有节点的路径的 JAVA 代码。
在链接中指定的图像中。我应该得到标签 C 的以下 o/p
A->B
一种
作为输出。
我知道所有可能的标签。假设标签的范围可以从 A 到 J。
树的节点类是:
class Node{
String label;
int count;
List<Node> children;
public int hashCode() {
return label.hashCode();
}
public boolean equals(Object obj) {
Node other = (Node)obj;
return other.label.equals(label);
}
}
我正在尝试类似的东西
for(each label)
start from root
search for all possible label location
print path for each label location
但无法理解如何编写代码。请帮忙。