What are the traverses in Binary Tree?

Answers were Sorted based on User's Feedback



What are the traverses in Binary Tree?..

Answer / firewithin

Inorder
Preorder
PostOrder

Is This Answer Correct ?    16 Yes 0 No

What are the traverses in Binary Tree?..

Answer / jack

In order... Left node, Root node, Right node

Pre order... Root node, Left node, Right node

Post order... Left node, Right node, Root node

Is This Answer Correct ?    8 Yes 1 No

Post New Answer

More Core Java Interview Questions

When can an object reference be cast to an interface reference in java programming?

0 Answers  


Suppose there is a System A which gives some output. This output is used as input by system B. The rate at which System A produces is faster than the rate at which system B consumes it. How can you improve this?

1 Answers   RBS,


what is singleton in java?

0 Answers   IBS,


How does compareto work in java?

0 Answers  


What modifiers may be used with a top-level class?

0 Answers  






What is difference between protected and private?

0 Answers  


Why are the destructors for base class and derived class called in reverse order when the program exits

0 Answers   HCL,


What is the use of parseint in java?

0 Answers  


What do you mean by order of precedence and associativity?

0 Answers  


What is java english?

0 Answers  


What is compareto () in java?

0 Answers  


Is space a character in java?

0 Answers  


Categories