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 |
Difference between process and thread?
What is the purpose of an interface?
Hi.... I applied for the post of scientific officer/Engineer-SB(Programmer).Please post the syllabus and sample papers.
Is there a case when finally will not execute?
How do I convert a string to an int in java?
What is the difference between Object and Instance?
What do you mean by data type?
What is the arguement of main method?
Is array dynamic in java?
why java is not supporting multiple inheritence?
Assume a thread has lock on it, calling sleep() method on that thread will release the lock?
Difference between == and .equals() ?