How do you traverse a binary tree, Mathematics

Assignment Help:

How do you traverse a Binary Tree?  Describe Preorder, Inorder and Postorder traversals with example.    

Ans: Traversal of tree means tree searching for a aim. The aim may be for searching or sorting of the items consisted of in a tree. A tree may consist of an item at its node as a label.

Traversing a tree is a recursive process. 

1764_How do you traverse a Binary Tree.png

To apply this, a tree is considered to comprise three components: root, left subtree and right subtree. These three components can be in order in six different ways: (left, root, right), (root, left, right), (left, right, root), (right, left, root), (right, root, left) and (root, right, left). The first three are used while the last three combinations are of no make use of as it alters the positions of a node in a positional tree.

Inorder Traversal: In this type of traversal, a tree is traversed in the sequence: Left subtree, Root, Right subtree.   

In the above expression, start at the root node marked, +. As first we have to traverse its left subtree, thus move to the root of left subtree that is node marked, *. Once again it has a left subtree with root node marked +, visit it. This subtree has a node labeled 3 that has no left subtree, thus out put 3. Then root of this subtree that is '+' and then right subtree which is once again a node labeled with 4, so output it. So we have expression acquired till here is 3 + 4.

Proceeding this way we acquire (3+4)*(5-2) + (-5). Parentheses signify both precedence and portion of the sub tree to which this sub-expression corresponds.     

Preorder Traversal: In this type of traversal a tree is traversed in the sequence: Root, Left subtree, Right subtree. Apply the algorithm recursively till all nodes have been visited, we acquire + * + 3 4 - 5 2 -5. 

Postorder Traversal: In this type of traversal a tree is traversed in the sequence: Left subtree, Right subtree, Root. We acquire 3 4 + 5 2 - * 5 - +.


Related Discussions:- How do you traverse a binary tree

DECIMALS, the mass of a container is 5.81kg when full with sugar .the mass ...

the mass of a container is 5.81kg when full with sugar .the mass of container is 3.8kg when 3/8 of the sugar is removed.what is the mass of empty container

How will you use the Gantt chart for solving the sequencing, How will you u...

How will you use the Gantt chart for solving the sequencing problem?

Definition of minimum and maximum values, Definition 1.   We say that f...

Definition 1.   We say that f(x) consist an absolute (or global) maximum at x = c if f ( x ) ≤ f (c ) for every x in the domain we are working on. 2.  We say that at x = c ,

Right angle triangle, If the points for a right angle triangle are XYZ wher...

If the points for a right angle triangle are XYZ where do I mark the points?

Operation research, details about criticl part time & pert method

details about criticl part time & pert method

Addition involving negative numbers, Q. Addition Involving Negative Numbers...

Q. Addition Involving Negative Numbers? Ans. When you add together positive and negative numbers, there are essentially three possibilities that you can encounter. Let's e

How to solve inequalities, How to Solve Inequalities ? Now that you hav...

How to Solve Inequalities ? Now that you have learned so much about solving equations, you're ready to solve inequalities. You might think that since an equation looks like

Unit circle, Unit circle A circle centered at the origin with radius 1 ...

Unit circle A circle centered at the origin with radius 1 (i.e. this circle) is called as unit circle.  The unit circle is very useful in Trigonometry. (b) x 2 + ( y - 3) 2

Evaluate the slope of the line, Evaluate the slope of the line: Examp...

Evaluate the slope of the line: Example: What is the slope of the line passing through the points (20, 85) and (30, 125)? Solution:            m = 125 -85/30-20 = 4

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd