What are the traverses in Binary Tree?
Answer Posted / 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 View All Answers
Can a private method be declared as static?
What is subsequence of a string?
What happens when a thread cannot acquire a lock on an object in java programming?
What is static in java?
What is math floor in java?
Which is bigger float or double java?
What is operator overloading. Is it is supported in java?
how we can create packages in java?
What is a void in java?
How do you represent a space in regex java?
Why java uses the concept of the string literal?
Is set ordered in java?
What does three dots mean in java?
Does isempty check for null?
What is a constructor, constructor overloading in java?