What are the traverses in Binary Tree?
Answers were Sorted based on User's Feedback
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 |
Is array a class in java?
Difference between class#getinstance() and new operator ?
What are the two ways of implementing multi-threading in java?
Why java is not a pure object oriented language?
How to avoid memory leak in java?
Can we have a abstract class withought any method? What is a purspose of this?
Explain the role played by Java Virtual Machine in Java Programming?
What are the names of Component subclasses that support painting?
What language is pass by reference?
what is the logic inside any default constuctor?
What does mean in regex?
Is empty list java?