Binary Search Tree(BST)

Binary Search Tree(BST) Definition See the Example : Binary Search Tree Node Representation Operations of Binary Search Tree(BST) There are some basic operation ,which can apply on the BST :

Preorder Traversal in Binary Tree

Traversal is a process to visit on every node at least once.Traversal process already discussed in Linked list ,Queue,Stack data structure where Traversing was sequential order.but in Binary tree we can traverse the all node by different different ways.for traversal, Read More …

Binary Tree

1- Types of Binary Tree Binary Tree also have a lot of its category : 1.1 – Strict Binary Tree : If each node of a binary tree contain exactly two or zero children ,is called Strict binary tree. 1.2 Read More …