Что такое узел в дереве?

Согласно вики, все в дереве - это узел.

Терминологии, используемые в деревьях

Root – The top node in a tree.
Parent – The converse notion of child.
Siblings – Nodes with the same parent.
Descendant – a node reachable by repeated proceeding from parent to child.
Ancestor – a node reachable by repeated proceeding from child to parent.
Leaf – a node with no children.
Internal node – a node with at least one child.
External node – a node with no children.
Degree – number of sub trees of a node.
Edge – connection between one node to another.
Path – a sequence of nodes and edges connecting a node with a descendant.
Level – The level of a node is defined by 1 + the number of connections between the node and the root.
Height of tree –The height of a tree is the number of edges on the longest downward path between the root and a leaf.
Height of node –The height of a node is the number of edges on the longest downward path between that node and a leaf.
Depth –The depth of a node is the number of edges from the node to the tree's root node.
Forest – A forest is a set of n ≥ 0 disjoint trees.

Но потом я нахожу следующую картину из SAP http://www.sapdesignguild.org/community/design/print_hierarchies2.asp

Итак, мой вопрос - правильно ли называть корень, лист, родителей, детей, братьев и сестер в дереве узлами?

1 ответ

Решение

Да. Корень - это "корневой узел". Родитель - это "родительский узел". Лист - это "листовой узел". Дерево состоит из узлов. Термины корень, родитель, потомок, родной брат, лист и т. Д. Просто описывают отношения между узлами.

Например, корневой узел не имеет родителя. Листовые узлы не имеют детей. Узлы-братья имеют одного и того же родителя.

Другие вопросы по тегам