Binary Tree:-
Nilu Kumari
Software Developer | Java | SQL | Data Structure & Algorithms | OOPS | JavaScript | HTML | CSS | Advance Java | Collection framework
Binary:-
A binary tree is a recursive data structure where each node can have two children at most.
A common type of binary tree is a binary search tree, in which every node has a value that is greater than or equal to the node values in the left sub-tree, and than or equal to the node values in the right sub-tree.
Operations on Binary Tree:
Traversing the Tree