Tree Structure Article Index for
Tree
Website Links For
Tree
 

Information About

Tree Structure




actually used a tree diagram to show which way its subjects were ordered.]]

A tree structure is a way of representing the Hierarchical nature of a Structure in a graphical form.
It is named a "tree structure" because the graph looks a bit like a Tree , even though the tree is generally shown upside down compared with a real tree; that is to say with the root at the top and the leaves at the bottom.

In Graph Theory , a Tree is a connected Acyclic Graph (or sometimes, a connected Directed Acyclic Graph in which every vertex has Indegree 0 or 1). An acyclic graph which is not necessarily connected is sometimes called a Forest (because it consists of trees).


NOMENCLATURE AND PROPERTIES


Every tree structure has a member that has no Superior . This member is called the "root" or Root Node . It can be thought of as the starting node
The converse is not true: infinite tree structures need not have a root node.

The lines connecting elements are called "branches", the elements themselves are called " Node s".
Nodes without children are called "end-nodes" or "leaves".

The names of relationships between nodes are modeled after family relations.
In computer science, traditionally only names for male family members had been used.
In linguistics, the names of female family members are used. It is said that this was an express countermovement to the traditional naming convention, started by the female students of linguist Noam Chomsky .
However, nowadays, in computer science at least, the gender-neutral names "parent" and "child" have largely displaced the older "father" and "son" terminology, although the term "uncle" is still used for other nodes at the same level as the parent.

  • A node is a "parent" of another node if it is one step higher in the hierarchy and closer to the root node.

  • "Sibling" ("brother" or "sister") nodes share the same parent node.

  • A node that is connected to all lower-level nodes is called an "ancestor".


In the example, "encyclopedia" is the parent of "science" and "culture", its children. "Art" and "craft" are siblings, and children of "culture".

Tree structures are used to depict all kinds of Taxonomic knowledge, such as Family Tree s, the Evolutionary Tree , the grammatical structure of a language (the famous example being S → NP VP, meaning a sentence is a noun phrase and a verb phrase), the way web pages are logically ordered in a web site, et cetera.

In a tree structure there is one and only one Path from any point to any other point.

Tree structures are used extensively in Computer Science (''see'' Tree (data Structure) ) and Telecommunications .


EXAMPLES OF TREE STRUCTURES



REPRESENTING TREES


There are many ways of visually representing tree structures.
Almost always, these boil down to variations, or combinations,
of a few basic styles:
  • Classical node-link diagrams, that connect nodes together with line segments:


encyclopedia
/ \
science culture
/ \
art craft

  • Nested sets that use enclosure/containment to show parenthood (for an interesting variation on this, see Treemaps ):


+
--encyclopedia
--+