树的高度 - PROLOG

时间:2016-01-04 21:06:05

标签: tree prolog height binary-tree

我尝试编写一个谓词来查找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开始。

2 个答案:

答案 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.