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 you explain the final method modifier?
If a method is declared as protected, where may the method be accessed?
Does constructor return any value?
What do you mean by platform independence of Java?
what is meant by encapsulation?
What are the library functions in java?
What is parsing in java?
What is unicode full form?
What are the parts of methodology?
What is a generic code?
What classes of exceptions may be caught by a catch clause in java programming?
Will set allow duplicates in java?
Is char a method in java?
What are the six ways to use this keyword?
What is meant by vector class, dictionary class, hash table class, and property class?