ArticleslgStudy

engineering

Tree structure

Tree structure is a engineering topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Tree structure rather than just read about it. In short: A tree structure, tree diagram, or tree model is a way of representing the hierarchical nature of a structure in a graphical form. It is named a "tree structure" because the classic representation resembles a tree, although the chart is generally upside down compared to a biological tree, with the "stem" at the top and the "leaves" at the bottom.

Tree structure — main illustration
Tree structure — illustration

Key takeaways

  • Tree structure belongs to engineering; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Tree structure to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Tree structure from memory before moving on to harder problems.

Reference excerpt

A tree structure, tree diagram, or tree model is a way of representing the hierarchical nature of a structure in a graphical form. It is named a "tree structure" because the classic representation resembles a tree, although the chart is generally upside down compared to a biological tree, with the "stem" at the top and the "leaves" at the bottom. A tree structure is conceptual, and appears in several forms. For a discussion of tree structures in specific fields, see Tree (data structure) for computer science; insofar as it relates to graph theory, see tree (graph theory) or tree (set theory). Other related articles are listed below.

Terminology and properties The tree elements are called "nodes". The lines connecting elements are called "branches". Nodes without children are called leaf nodes, "end-nodes", or "leaves". Every finite tree structure has a member that has no superior. This member is called the "root" or root node. The root is the starting node. But the converse is not true: infinite tree structures may or may not have a root node. The names of relationships between nodes model the kinship terminology of family relations. The gender-neutral names "parent" and "child" have largely displaced the older "father" and "son" terminology. The term "uncle" is still widely used for other nodes at the same level as the parent, although it is sometimes replaced with gender-neutral terms like "ommer".

A node's "parent" is a node one step higher in the hierarchy (i.e. closer to the root node) and lying on the same branch. "Sibling" ("brother" or "sister") nodes share the same parent node. A node's "uncles" (sometimes "ommers") are siblings of that node's parent. A node that is connected to all lower-level nodes is called an "ancestor". The connected lower-level nodes are "descendants" of the ancestor node. In the example, "encyclopedia" is the parent of "science" and "culture", its children. "Art" and "craft" are siblings, and children of "culture", which is their parent and thus one of their ancestors. Also, "encyclopedia", as the root of the tree, is the ancestor of "science", "culture", "art" and "craft". Finally, "science", "art" and "craft", as leaves, are ancestors of no other node. Tree structures can depict all kinds of taxonomic knowledge, such as family trees, the biological evolutionary tree, the evolutionary tree of a language family, the grammatical structure of a language (a key example being S → NP VP, meaning a sentence is a noun phrase and a verb phrase, with each in turn having other components which have other components), the way web pages are logically ordered in a web site, mathematical trees of integer sets, et cetera. The Oxford English Dictionary records use of both the terms "tree structure" and "tree-diagram" from 1965 in Noam Chomsky's Aspects of the Theory of Syntax. In a tree structure there is one and only one path from any point to any other point. Computer science uses tree structures extensively (see Tree (data structure) and telecommunications.) For a formal definition see set theory, and for a generalization in which children are not necessarily successors, see prefix order.

Examples of tree structures

Internet: usenet hierarchy Document Object Model's logical structure, Yahoo! subject index, Curlie Operating system: directory structure Information management: Dewey Decimal System, PSH, this hierarchical bulleted list Management: hierarchical organizational structures Computer science: binary search tree red–black tree AVL tree R-tree doubly logarithmic tree Biology: evolutionary tree Business: pyramid selling scheme Project management: work breakdown structure Linguistics: (Syntax) Phrase structure trees (Historical Linguistics) Tree model of language change Sports: business chess, playoffs brackets Mathematics: Von Neumann universe Group theory: descendant trees

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 Classical node-link diagrams, that connect nodes together with line segments:

Nested sets Nested sets that use enclosure or containment to show parenthood; examples include TreeMaps, fractal maps, and Euler diagrams:

Layered "icicle" diagrams Layered "icicle" diagrams that use alignment/adjacency.

Outlines and tree views

Lists or diagrams that use indentation, sometimes called "outlines" or "tree views". An outline:

A tree view:

Nested parentheses

A correspondence to nested parentheses was first noticed by Sir Arthur Cayley:

Radial trees

Trees can also be represented radially:

See also Kinds of trees

B-tree Dancing tree Decision tree Left-child right-sibling binary tree Porphyrian tree Tree (data structure) Tree (graph theory) Tree (set theory) Related articles

Data drilling Hierarchical model: clustering and query Tree testing

References

Further reading Identification of some of the basic styles of tree structures can be found in:

Jacques Bertin, Semiology of Graphics, 1983, University of Wisconsin Press (2nd edition 1973, ISBN 978-0299090609; Donald E. Knuth (1968). The Art of Computer Programming. Volume 1: Fundamental Algorithms. Addison-Wesley. pp. 309–310. Brian Johnson and Ben Shneiderman, "Tree-maps: A space-filling approach to the visualization of hierarchical information structures", in Proceedings of IEEE Visualization (VIS), 1991, pp. 284–291, ISBN 0-8186-2245-8; Peter Eades, Tao Lin, and Xuemin Lin, "Two Tree Drawing Conventions", International Journal of Computational Geometry and Applications, 1993, volume 3, number 2, pp. 133–153. Manuel Lima (2014). The Book of Trees: Visualizing Branches of Knowledge (1st ed.). New York: Princeton Architectural Press. ISBN 978-1-616-89218-0.

External links

Visualization of phylogenetic trees on the T-REX server Using a tree structure to design a business process – from the Society for Technical Communication

Illustrations

Tree structure: A tree structure showing the possible hierarchical organization of an encyclopedia
A tree structure showing the possible hierarchical organization of an encyclopedia
Tree structure: The original Encyclopédie (1752) used a tree diagram to show the way in which its subjects were ordered.
The original Encyclopédie (1752) used a tree diagram to show the way in which its subjects were ordered.
Tree structure: A tree map used to represent a directory structure as a nested set
A tree map used to represent a directory structure as a nested set
Tree structure: A diagram in the shape of a tree illustrating the "evolution" of thermionic tubes (a type of vacuum tube) between 1883 and 1934
A diagram in the shape of a tree illustrating the "evolution" of thermionic tubes (a type of vacuum tube) between 1883 and 1934

Worked examples

Example 1 — a first encounter with Tree structure

Start with the simplest possible case. Write down what Tree structure claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In engineering, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Tree structure before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Tree structure ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Tree structure

In research
Tree structure appears in engineering research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Tree structure in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Tree structure is common in secondary-school and first-year university syllabi. It links to neighbouring topics Conceptual models, Trees (data structures), so understanding it makes those chapters shorter.
In everyday life
Look for Tree structure outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Tree structure in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Tree structure means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Tree structure out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Tree structure in simple terms?

A tree structure, tree diagram, or tree model is a way of representing the hierarchical nature of a structure in a graphical form. It is named a "tree structure" because the classic representation resembles a tree, although the chart is generally upside down compared to a biological tree, with the…

Why does Tree structure matter?

Because it connects several engineering ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Tree structure?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Tree structure.

Tags

  • Conceptual models
  • Trees (data structures)

Keep exploring