1 / 27

Discrete Mathematics – CIS166

Discrete Mathematics – CIS166. Text Discrete Mathematics and Its Applications (5 th Edition) Kenneth H. Rosen Chapter 10: Trees By Chuck Allison Modified by Longin Jan Latecki, Temple University. Section 10.1. Introduction to Trees. Definition:.

red
Télécharger la présentation

Discrete Mathematics – CIS166

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Discrete Mathematics – CIS166 Text Discrete Mathematics and Its Applications (5th Edition) Kenneth H. Rosen Chapter 10: Trees By Chuck Allison Modified by Longin Jan Latecki, Temple University

  2. Section 10.1 Introduction to Trees

  3. Definition: A tree is a connected undirected graph with no simple circuits. Recall: A circuit is a path of length >=1 that begins and ends a the same vertex.

  4. d d

  5. Alice Antonia Anita Abigail Amy Agnes Angela Audrey Alice Abigail Agnes Angela Alice Angela Alice Tournament Trees A common form of tree used in everyday life is the tournament tree, used to describe the outcome of a series of games, such as a tennis tournament.

  6. Gaea Ocean Phoebe Cronus Zeus Poseidon Demeter Pluto Leto Iapetus Apollo Atlas Prometheus Persephone A Family Tree Much of the tree terminology derives from family trees.

  7. Iphigenia Clytemnestra Agamemnon Leda Tyndareus Aerope Atreus Catreus Ancestor Tree An inverted family tree. Important point - it is a binary tree.

  8. Forest Graphs containing no simple circuits that are not connected, but each connected component is a tree.

  9. Theorem An undirected graph is a tree if and only if there is a unique simple path between any two of its vertices.

  10. Rooted Trees Once a vertex of a tree has been designated as the root of the tree, it is possible to assign direction to each of the edges.

  11. a e c b d g f Rooted Trees g e f b d a c

  12. root node a internal vertex parent of g c b d e f g leaf siblings h i

  13. a c b d e f g h i ancestors of h and i

  14. a c b d e f g subtree with b as its root h i subtree with c as its root

  15. m-ary trees A rooted tree is called an m-ary tree if every internal vertex has no more than m children. The tree is called a full m-arytree if every internal vertex has exactly m children. An m-ary tree with m=2 is called a binary tree.

  16. Ordered Rooted Tree An ordered rooted tree is a rooted tree where the children of each internal vertex are ordered. Ordered trees are drawn so that the children of each internal vertex are shown in order from left to right.

  17. Properties of Trees A tree with n vertices has n-1 edges.

  18. Properties of Trees A full m-ary tree with i internal vertices contains n = mi+1 vertices.

  19. Properties of Trees A full m-ary tree with (i) n vertices has i = (n-1)/m internal vertices and l = [(m-1)n+1]/m leaves. (ii) i internal vertices has n = mi + 1 vertices and l = (m-1)i + 1 leaves. (iii) l leaves has n = (ml - 1)/(m-1) vertices and i = (l-1)/(m-1) internal vertices.

  20. Proof • We know n = mi+1 (previous theorem) and n = l+i, • n – no. vertices • i – no. internal vertices • l – no. leaves • For example, i = (n-1)/m

  21. level 3 Properties of Trees The level of a vertex v in a rooted tree is the length of the unique path from the root to this vertex. level 2

  22. Properties of Trees The height of a rooted tree is the maximum of the levels of vertices.

  23. Properties of Trees A rooted m-ary tree of height h is called balanced if all leaves are at levels h or h-1.

  24. Properties of Trees There are at most mhleaves in an m-ary tree of height h.

  25. Properties of Trees If an m-ary tree of height h has l leaves, then

  26. Proof • From previous theorem:

More Related