What is binary tree? With suitable example, give the linked representation of binary tree in memory. (for 4 marks)
Answers
Answered by
0
Answer:
there is ur answer hope it will help u
Explanation:
Binary Tree in a Linked Representation
Each node constitutes of a data part and two link parts. The two link parts store address of left and right child nodes. Data part is used to store the information about the binary tree element. This is a better representation as nodes can be added or deleted at any location.
Similar questions