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

First order linear differential equation, Newton's Second Law of motion, wh...

Newton's Second Law of motion, which recall from the earlier section that can be written as: m(dv/dt) = F (t,v) Here F(t,v) is the sum of forces which act on the object and m

Logarithmic functions- general properties, Logarithmic functi...

Logarithmic functions have the following general properties If y = log a x, a > 0 and a ≠1, then The domain of the function

Calculus (The squeeze theorem), When finding the limit as x approaches 0 th...

When finding the limit as x approaches 0 the for function (square root of x^3 + x^2) cos(pi/2x) would the limit not exist because there would be a zero in the denominator?

Characteristics of time series, Characteristics of Time Series Time se...

Characteristics of Time Series Time series has the given characteristics. a) A long term trend (T) -tendency of the whole series to fall and rise. b) Seasonal variati

Calculate the area and perimeter of a parallelogram, Calculate the area and...

Calculate the area and perimeter of a parallelogram: Calculate the area and perimeter of a parallelogram with base (b) = 4´, height (h) = 3´, a = 5´ and b = 4´.  Be sure to in

Roof-finding using steffensen''s method, write a computer program that will...

write a computer program that will implement Steffensen''s method.

Lower than average, A local police precinct has seen a recent enhance in th...

A local police precinct has seen a recent enhance in the number of complaints filed regarding how officers are interacting with the public. Before addressing the issue, the command

Describe subtracting negative fractions, Describe Subtracting Negative Frac...

Describe Subtracting Negative Fractions? Subtracting two fractions, whether one is positive and one is negative, or whether they are both negative, is almost the same process a

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