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

Is array a class in java?

0 Answers  


Difference between class#getinstance() and new operator ?

0 Answers  


What are the two ways of implementing multi-threading in java?

1 Answers  


Why java is not a pure object oriented language?

5 Answers   IBM,


How to avoid memory leak in java?

0 Answers  


Can we have a abstract class withought any method? What is a purspose of this?

3 Answers  


Explain the role played by Java Virtual Machine in Java Programming?

1 Answers  


What are the names of Component subclasses that support painting?

1 Answers  


What language is pass by reference?

0 Answers  


what is the logic inside any default constuctor?

2 Answers  


What does  mean in regex?

0 Answers  


Is empty list java?

0 Answers  


Categories