InterviewSolution
Saved Bookmarks
| 1. |
Explain insertion operation on Binary tree? |
|
Answer» When inserting or searching for an ELEMENT in a BINARY search TREE, the KEY of each visited node has to be compared with the key of the element to be inserted or found. |
|