What is Tree?



Vikas Said

+0 -0

Tree is non-linear and hierarchical type of data structure (without cycle) and it is collection of nodes, each node consists data part and address of the child of nodes.
It is very easy to implement using linkedlist.



Submit Your Response