/ / Какво е възел в дърво? - структури от данни, дърво, възли, treenode

Какво представлява възелът в дървото? - структури от данни, дърво, възли, treenode

Според уики, всичко в едно дърво е възел.

Терминологиите, използвани в дърветата

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 въведете описанието на изображението тук

Така че моят въпрос - дали е правилно да наречете корен, лист, родители, деца, братя и сестри в едно дърво като възли?

Отговори:

2 за отговор № 1

Да. Коренът е "коренният възел"."Родител е" родителски възел ". Листа е" листов възел. "Дървото е съставено от възли, а термините корен, родител, дете, сестра, лист и т.н.

Например коренният възел няма родител. Лизовите възли нямат деца. Събраните възли споделят един и същ родител.