4 4 votes What is the difference between Binary Tree and Almost complete Binary tree and complete Binary Tree and full Binary Tree and Binary search Tree and Balanaced Binary Search Tree. Diagram would be appriciated otherwaise write 2-3 basic difference . Data Structures binary-tree binary-search-tree data-structures + – Don't you worry 3.9k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes Binary tree :- Any tree with max two child nodes Full Binary tree:- Any tree with a given level h having 2^h-1 elements complete binary tree : if we start removing elements from full binary tree ( 0 or more from rightmost leaf node )result will always be a CBT almost CBT : it is a complete binary tree in which last level is not full (i.e at least one element has to be removed from full binary tree) BST is based on values values in left are less than root and values at right are more than root e.g 30 12 45 for balanced BST refer https://www.cpp.edu/~ftang/courses/CS241/notes/self%20balance%20bst.htm Sanjay Sharma answered Jul 16, 2016 • edited Nov 10, 2016 by Sanjay Sharma Sanjay Sharma comment Share Follow See all 5 Comments 5 5 Comments reply Show 2 previous comments Don't you worry commented Jul 16, 2016 reply Follow flag but in your paper pen explanation first exp from bottom it has lest child but no right chile . but on the next parent node you have given both child without filling up previous right child of lest node 1 1 replyShare Kaluti commented Nov 9, 2016 reply Follow flag Ya in bottom last part how can we show both left child as well right child of parent until unless we dnt put right child of parent being at the same level 1 1 replyShare Sanjay Sharma commented Nov 10, 2016 reply Follow flag thanks edited now 0 0 replyShare Please log in or register to add a comment.
0 0 votes courses.cs.vt.edu/~cs3114/Fall09/wmcquain/Notes/T03a.BinaryTreeTheorems.pdf i think u should give it a try. Pankaj kumar answered Jul 17, 2016 Pankaj kumar comment Share Follow 0 reply Please log in or register to add a comment.
0 0 votes In above are the types of binary tree One answered Sep 10, 2016 • edited Sep 17, 2016 by One One comment Share Follow 0 reply Please log in or register to add a comment.