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 |
What is the use of parseint in java?
What is variable explain?
What is try-with-resources in java?
What is meant by class loader? How many types are there?
What is difference between overloading and overriding in java?
Name the methods in mouse listeners ?
any other way to print the text without using System.out.println() in java?
What is the main function in java?
How is the marker interface used in Java?
what do you understand by synchronization? : Java thread
What is string builder?
What is map in java?