/ / Cos'è il nodo in un albero? - strutture dati, albero, nodi, treenode

Cos'è il nodo in un albero? - strutture dati, albero, nodi, treenode

Secondo wiki, tutto in un albero è un nodo.

Terminologie utilizzate negli alberi

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.

Ma poi trovo la seguente immagine da SAP http://www.sapdesignguild.org/community/design/print_hierarchies2.asp inserisci la descrizione dell'immagine qui

Quindi la mia domanda: è giusto chiamare radice, foglia, genitori, figli, fratelli in un albero come nodi?

risposte:

2 per risposta № 1

Sì. La radice è "il nodo radice."Un genitore è un" nodo genitore ". Una foglia è un" nodo foglia ". L'albero è costituito da nodi. I termini radice, genitore, figlio, fratello, foglia, ecc. Descrivono semplicemente le relazioni tra i nodi.

Ad esempio, il nodo principale non ha parent. I nodi fogliari non hanno figli. I nodi del fratello condividono lo stesso genitore.