Tree in data structure
TREE
Tree is a non linear data structure it is defined as a
collection of objects known as nodes that are linked in a non-linear structure.
- In the tree data structure, the topmost node is known as root node.
- Each node contains some data and that data can be any type.
- Each node contains some data and the link of other node that can be call as children node.
- Tree is a finite set of nodes.
Ø
Comments
Post a Comment