InterviewSolution
Saved Bookmarks
| 1. |
Can child node be always called Leaf node in the ternary tree?(a) True(b) FalseAsked question is from Ternary Tree topic in chapter Trees of Data Structures & Algorithms IThe question was posed to me during a job interview. |
|
Answer» RIGHT CHOICE is (b) False Explanation: Leaf node is any node that does not CONTAIN any children. Child node MAY or may not contain more nodes. Child node will only be called leaf Node if the node has no child node. |
|