nature lover’s view of a tree

60
Nature Lover’s View Of A Tree roo t branche s leaves

Upload: joelle-wall

Post on 30-Dec-2015

19 views

Category:

Documents


1 download

DESCRIPTION

leaves. branches. root. Nature Lover’s View Of A Tree. root. leaves. branches. nodes. Computer Scientist’s View. Linear Lists And Trees. Linear lists are useful for serially ordered data. (e 0 , e 1 , e 2 , …, e n-1 ) Days of week. Months in a year. Students in this class. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Nature Lover’s View Of A Tree

Nature Lover’s View Of A Tree

root

branches

leaves

Page 2: Nature Lover’s View Of A Tree

Computer Scientist’s View

branches

leavesroot

nodes

Page 3: Nature Lover’s View Of A Tree

Linear Lists And Trees

• Linear lists are useful for serially ordered data. (e0, e1, e2, …, en-1)

Days of week. Months in a year. Students in this class.

• Trees are useful for hierarchically ordered data.

Page 4: Nature Lover’s View Of A Tree

Hierarchical Data And Trees

• The element at the top of the hierarchy is the root.

• Elements next in the hierarchy are the children of the root.

• Elements that have no children are leaves.

Page 5: Nature Lover’s View Of A Tree

great grand child of root

grand children of root

children of root

Example Tree

President

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

root

Page 6: Nature Lover’s View Of A Tree

Definition

• A tree t is a finite nonempty set of elements.

• One of these elements is called the root.

• The remaining elements, if any, are partitioned into trees, which are called the subtrees of t.

Page 7: Nature Lover’s View Of A Tree

Subtrees

President

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

root

Page 8: Nature Lover’s View Of A Tree

Leaves

President

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

Page 9: Nature Lover’s View Of A Tree

Parent, Siblings, Ancestors, Descendants

President

VP1 VP2 VP3

Manager2 Manager Manager

Worker Bee

Manager1

Page 10: Nature Lover’s View Of A Tree

Level 4

Level 3

Level 2

Levels

President

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

Level 1

Page 11: Nature Lover’s View Of A Tree

Caution

• Some texts start level numbers at 0 rather than at 1.

• Root is at level 0.

• Its children are at level 1.

• The grand children of the root are at level 2.

• And so on.

• We shall number levels with the root at level 1.

Page 12: Nature Lover’s View Of A Tree

height = depth = number of levels

Level 4

Level 3

Level 2

President

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

Level 1

Page 13: Nature Lover’s View Of A Tree

Node Degree = Number Of ChildrenPresident

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

3

2 1 1

0 0 1 0

0

Page 14: Nature Lover’s View Of A Tree

Tree Degree = Max Node Degree

Degree of tree = 3.

President

VP1 VP2 VP3

Manager1 Manager2 Manager Manager

Worker Bee

3

2 1 1

0 0 1 0

0

Page 15: Nature Lover’s View Of A Tree

Binary Tree

• Finite (possibly empty) collection of elements.

• A nonempty binary tree has a root element.

• The remaining elements (if any) are partitioned into two binary trees.

• These are called the left and right subtrees of the binary tree.

Page 16: Nature Lover’s View Of A Tree

Differences Between A Tree & A Binary Tree

• No node in a binary tree may have a degree more than 2, whereas there is no limit on the degree of a node in a tree.

• A binary tree may be empty; a tree cannot be empty.

Page 17: Nature Lover’s View Of A Tree

General Trees• Nodes of a general tree can have any number of subtrees

• A general tree can be represented using a binary tree

Page 18: Nature Lover’s View Of A Tree

Binary Tree Properties & Representation

Page 19: Nature Lover’s View Of A Tree

Minimum Number Of Nodes• Minimum number of nodes in a binary tree

whose height is h.

minimum number of nodes is h

Page 20: Nature Lover’s View Of A Tree

Maximum Number Of Nodes• All possible nodes at first h levels are present.

Maximum number of nodes

= 1 + 2 + 4 + 8 + … + 2h-1

= 2h - 1

Page 21: Nature Lover’s View Of A Tree

Number Of Nodes & Height

• Let n be the number of nodes in a binary tree whose height is h.

• h <= n <= 2h – 1

• log2(n+1) <= h <= n

Page 22: Nature Lover’s View Of A Tree

Full Binary Tree

• A full binary tree of a given height h has 2h – 1 nodes.

Height 4 full binary tree.

Page 23: Nature Lover’s View Of A Tree

Numbering Nodes In A Full Binary Tree

• Number the nodes 1 through 2h – 1.

• Number by levels from top to bottom.

• Within a level number from left to right.1

2 3

4 5 6 7

8 9 10 11 12 13 14 15

Page 24: Nature Lover’s View Of A Tree

Node Number Properties

• Parent of node i is node i / 2, unless i = 1.

• Node 1 is the root and has no parent.

1

2 3

4 5 6 7

8 9 10 11 12 13 14 15

Page 25: Nature Lover’s View Of A Tree

Node Number Properties

• Left child of node i is node 2i, unless 2i > n, where n is the number of nodes.

• If 2i > n, node i has no left child.

1

2 3

4 5 6 7

8 9 10 11 12 13 14 15

Page 26: Nature Lover’s View Of A Tree

Node Number Properties

• Right child of node i is node 2i+1, unless 2i+1 > n, where n is the number of nodes.

• If 2i+1 > n, node i has no right child.

1

2 3

4 5 6 7

8 9 10 11 12 13 14 15

Page 27: Nature Lover’s View Of A Tree

About node i

• Parent If i==1, node i is root Else i/2

• left child If 2*i > n, node i is leave Else 2*i

• Right child If 2*i+1 > n, node i has no right child Else 2*i+1

Page 28: Nature Lover’s View Of A Tree

Complete Binary Tree With n Nodes

• Start with a full binary tree that has at least n nodes.

• Number the nodes as described earlier.

• The binary tree defined by the nodes numbered 1 through n is the unique n node complete binary tree.

Page 29: Nature Lover’s View Of A Tree

Example

• Complete binary tree with 10 nodes.

1

2 3

4 5 6 7

8 9 10 11 12 13 14 15

Page 30: Nature Lover’s View Of A Tree

Binary Tree Representation

• Array representation.

• Linked representation.

Page 31: Nature Lover’s View Of A Tree

Array Representation• Number the nodes using the numbering scheme

for a full binary tree. The node that is numbered i is stored in tree[i].

tree[]0 5 10

a b c d e f g h i j

b

a

c

d e f g

h i j

1

2 3

4 5 6 7

8 9 10

Page 32: Nature Lover’s View Of A Tree

Right-Skewed Binary Tree

• An n node binary tree needs an array whose length is between n+1 and 2n.

a

b

1

3

c7

d15

tree[]0 5 10

a - b - - - c - - - - - - -15d

Page 33: Nature Lover’s View Of A Tree

Linked Representation

• Each binary tree node is represented as an object whose data type is TreeNode.

• The space required by an n node binary tree is n * (space required by one node).

Page 34: Nature Lover’s View Of A Tree

The Struct binaryTreeNodeclass TreeNode

{

int data;

TreeNode *leftChild,

*rightChild;

TreeNode()

{leftChild = rightChild = NULL;}

// other constructors come here

};

Page 35: Nature Lover’s View Of A Tree

Linked Representation Example

a

cb

d

f

e

g

hleftChilddatarightChild

root

Page 36: Nature Lover’s View Of A Tree

Binary Tree Traversal

• Many binary tree operations are done by performing a traversal of the binary tree.

• In a traversal, each element of the binary tree is visited exactly once.

• During the visit of an element, all action (make a clone, display, evaluate the operator, etc.) with respect to this element is taken.

Page 37: Nature Lover’s View Of A Tree

Binary Tree Traversal Methods

• Preorder

• Inorder

• Postorder

• Level order

Page 38: Nature Lover’s View Of A Tree

Preorder Example (Visit = print)

a

b c

a b c

Page 39: Nature Lover’s View Of A Tree

Preorder Example (Visit = print)

a

b c

d ef

g h i j

a b d g h e i c f j

Page 40: Nature Lover’s View Of A Tree

Preorder Traversal

void PreOrder(TreeNode *t){ if (t != NULL) { Visit(t); PreOrder(t->leftChild); PreOrder(t->rightChild); }}

Page 41: Nature Lover’s View Of A Tree

Preorder Of Expression Tree

+

a b

-

c d

+

e f

*

/

Gives prefix form of expression!

/ * + a b - c d + e f

Page 42: Nature Lover’s View Of A Tree

Inorder Example (Visit = print)

a

b c

b a c

Page 43: Nature Lover’s View Of A Tree

Inorder Example (Visit = print)

a

b c

d ef

g h i j

g d h b e i a f j c

Page 44: Nature Lover’s View Of A Tree

Inorder Traversal

void InOrder(TreeNode *t){ if (t != NULL) { InOrder(t->leftChild); Visit(t); InOrder(t->rightChild); }}

Page 45: Nature Lover’s View Of A Tree

Inorder Of Expression Tree

+

a b

-

c d

+

e f

*

/

Gives infix form of expression (sans parentheses)!

ea + b * c d / + f-

Page 46: Nature Lover’s View Of A Tree

Postorder Example (Visit = print)

a

b c

b c a

Page 47: Nature Lover’s View Of A Tree

Postorder Example (Visit = print)

a

b c

d ef

g h i j

g h d i e b j f c a

Page 48: Nature Lover’s View Of A Tree

Postorder Traversal

void PostOrder(TreeNode *t){ if (t != NULL) { PostOrder(t->leftChild); PostOrder(t->rightChild); Visit(t); }}

Page 49: Nature Lover’s View Of A Tree

Postorder Of Expression Tree

+

a b

-

c d

+

e f

*

/

Gives postfix form of expression!

a b + c d - * e f + /

Page 50: Nature Lover’s View Of A Tree

Level-Order Example (Visit = print)

a

b c

d ef

g h i j

a b c d e f g h i j

Page 51: Nature Lover’s View Of A Tree

Level Orderif (root==NULL)

return;insert(root); //put root into a queuewhile (Queue is not empty){ t=delete queue; visit(t); if (t->leftchild != NULL) insert(t->leftchild); if (t->rightchild != NULL) insert(t->rightchild);}

Page 52: Nature Lover’s View Of A Tree

Binary Tree Construction

• Suppose that the elements in a binary tree are distinct.

• Can you construct the binary tree from which a given traversal sequence came?

• When a traversal sequence has more than one element, the binary tree is not uniquely defined.

• Therefore, the tree from which the sequence was obtained cannot be reconstructed uniquely.

Page 53: Nature Lover’s View Of A Tree

Some Examplespreorder

= aba

b

a

b

inorder = ab

b

a

a

b

postorder = ab

b

a

b

a

level order = ab

a

b

a

b

Page 54: Nature Lover’s View Of A Tree

Binary Tree Construction

• Can you construct the binary tree, given two traversal sequences?

• Depends on which two sequences are given.

Page 55: Nature Lover’s View Of A Tree

Preorder And Postorder

preorder = ab a

b

a

bpostorder = ba

• Preorder and postorder do not uniquely define a binary tree.

• Nor do preorder and level order (same example).

• Nor do postorder and level order (same example).

Page 56: Nature Lover’s View Of A Tree

Inorder And Preorder• inorder = g d h b e i a f j c• preorder = a b d g h e i c f j• Scan the preorder left to right using the

inorder to separate left and right subtrees.• a is the root of the tree; gdhbei are in the

left subtree; fjc are in the right subtree.

a

gdhbei fjc

Page 57: Nature Lover’s View Of A Tree

Inorder And Preorder

• preorder = a b d g h e i c f j• b is the next root; gdh are in the left

subtree; ei are in the right subtree.

a

gdhbei fjc

a

gdh

fjcb

ei

Page 58: Nature Lover’s View Of A Tree

Inorder And Preorder

• preorder = a b d g h e i c f j• d is the next root; g is in the left

subtree; h is in the right subtree.

a

gdh

fjcb

ei

a

g

fjcb

eid

h

Page 59: Nature Lover’s View Of A Tree

Inorder And Postorder

• Scan postorder from right to left using inorder to separate left and right subtrees.

• inorder = g d h b e i a f j c

• postorder = g h d i e b j f c a• Tree root is a; gdhbei are in left subtree; fjc

are in right subtree.

Page 60: Nature Lover’s View Of A Tree

Inorder And Level Order

• Scan level order from left to right using inorder to separate left and right subtrees.

• inorder = g d h b e i a f j c

• level order = a b c d e f g h i j• Tree root is a; gdhbei are in left subtree; fjc

are in right subtree.