Difference between revisions of "Tree structure"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External Links)
(See also)
 
(One intermediate revision by the same user not shown)
Line 21: Line 21:
 
* [[One-to-many]]
 
* [[One-to-many]]
 
* [[Structure]]
 
* [[Structure]]
 +
* [[Tree (data structure)]]
 
* [[Tree (graph theory)]]
 
* [[Tree (graph theory)]]
  
Line 27: Line 28:
 
* [https://en.wikipedia.org/wiki/Tree_structure Tree structure] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Tree_structure Tree structure] @ Wikipedia
  
 +
[[Category:Computer science]]
 
[[Category:Graph theory]]
 
[[Category:Graph theory]]
 
[[Category:Mathematics]]
 
[[Category:Mathematics]]
 
[[Category:Structures]]
 
[[Category:Structures]]

Latest revision as of 18:07, 25 April 2016

In mathematics and computer science, a tree structure or tree diagram is a way of representing the hierarchical nature of a structure in a graphical form.

Description

It is named a "tree structure" because the classic representation resembles a tree, even though the chart is generally upside down compared to an actual tree, with the "root" at the top and the "leaves" at the bottom.

Document Object Model

The Document Object Model uses a tree structure.

Graph theory

See Graph theory and Tree (graph theory).

See also

External Links