treelevel.m

来自「遗传规划的matlab工具箱」· M 代码 · 共 28 行

M
28
字号
function s=treelevel(tree)
%TREELEVEL    Counts the number of levels of a GPLAB algorithm tree.
%   TREELEVEL(TREE) returns the number of levels, or depth, of a
%   GPLAB algorithm individual representation tree.
%
%   Input arguments:
%      TREE - the tree to measure (struct)
%   Output arguments:
%      NLEVELS - the depth level of the tree (integer)
%
%   See also NODES, MAKETREE
%
%   Copyright (C) 2003-2004 Sara Silva (sara@dei.uc.pt)
%   This file is part of the GPLAB Toolbox

nkids=size(tree.kids,2);
if nkids<0
   error('TREELEVEL: number of children lower than 0!');
end

s=1; % root of this subtree
if nkids>0
   for i=1:nkids
      k(i)=treelevel(tree.kids{i});      
   end
   s=s+max(k);
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?