我尝试编写一个谓词来查找Prolog中树的高度。
我的树像这样表示:
A
/ \
B C
/ \ / \
D E F G
[a,[b,[d,e],c [f,g]]]([Root,[Children]])
我的谓词是:
height(Tr,0) :-
atomic(Tr).
height([L|R],N) :-
height(L,N1),
height(R,N2),
N is max(N1,N2)+1.
但我的代码不起作用。我写的时候:
height([a,[b,[d,e],c,[f,g]]],N).
N等于8.
我可以帮忙吗?
注意:根的高度从0开始。
答案 0 :(得分:1)
有助于找到正确的抽象。
给定使用这些约定表示的二叉树:
nil
表示。tree/3
表示,其中
解决方案非常简单:
tree_depth( nil , 0 ) . % the depth of an empty tree is 0.
tree_depth( tree(_,L,R) , D ) :- % the depth of a non-empty tree is computed thus:
tree_depth(L,L1) , % - compute the depth of the left subtree
tree_depth(R,R1) , % - compute the depth of the right subtree
D is 1 + max(L1,R1) % - the overall depth is 1 more than the maximum depth in both subtrees.
. %
计算 n-ary树的深度,其中每个节点可以有任意数量的子节点,并不复杂得多。我们将代表我们的 n-ary树:
nil
表示。tree/2
表示,其中
nil
)。解决方案再次简单:
tree_depth( nil , 0 ) . % the depth of the empty tree is 0.
tree_depth( tree(_,C) , D ) :- % the depth of a non-empty tree is computed thus:
subtree_depth( C , 0 , T ) , % - compute the depth of the subtrees of the current node
D is 1+T % - add 1 to that
. %
subtree_depth( [] , D , D ) . % child subtrees exhausted? unify the accumulator with the result
subtree_depth( [X|Xs] , T , D ) :- % otherwise...
tree_depth(X,X1) , % - compute the depth of the current subtree
T1 is max(T,X1) , % - set the accumulator the max value
subtree_depth( Xs , T1 , D ) % - recurse down on the tail.
.
答案 1 :(得分:0)
您的查询似乎并不代表有效的树,总是的形状为[_, SubList]
。此代码段假设了这种表示形式,以及库(aggregate)的可用性:
height([_,Sub], Height) :- !,
aggregate(max(H + 1), S^(member(S, Sub), height(S, H)), Height).
height(_, 0).
产量
?- height([a,[ [b,[d,e]], [c,[f,g]] ]],N).
N = 2.