Перекомпоновать узел
T = nodejoin(
T
,N
)
T = nodejoin(T
)
T = nodejoin(T,0)
nodejoin
- утилита управления деревом.
T = nodejoin(
возвращает измененное дерево T
,N
)T
соответствующий перекомпозиции узла N
.
Нумерация узлов выполняется слева направо и сверху вниз. Корневой индекс 0.
T = nodejoin(
эквивалентно T
)T = nodejoin(T,0)
.
% Create binary tree of depth 3.
t = ntree(2,3);
% Plot tree t.
plot(t)
% Change Node Label from Depth_Position to Index
% (see the plot
function).
% Merge nodes of indices 4 and 5.
t = nodejoin(t,5);
t = nodejoin(t,4);
% Plot new tree t.
plot(t)
% Change Node Label from Depth_Position to Index
% (see the plot
function).