Разделите (анализируют) узел
T = nodesplt(
T
,N
)
nodesplt
утилита древовидного управления.
T = nodesplt(
возвращает модифицированный древовидный T
,N
)T
соответствие разложению узла N
.
Узлы пронумерованы слева направо и сверху донизу. Корневой индекс 0.
% Create binary tree (tree of order 2) of depth 3.
t = ntree(2,3);
% Plot tree t.
plot(t)
% Change Node Label from Depth_Position to Index
% (see the plot
function).
% Split node of index 10.
t = nodesplt(t,10);
% Plot new tree t.
plot(t)
% Change Node Label from Depth_Position to Index
% (see the plot
function).