Ask a Question

what is the difference between binary+&binary search

on 2012-10-23 02:06:50   by Arka   on Computer Science & Engineering  1 answers

Rajni

on 2012-10-27 09:30:00  

Binary tree: Tree where each node has up to two leaves Binary search tree: Used for searching. A binary tree where the left child contains only nodes with values less than the parent node, and where the right child only contains nodes with values greater than or equal to the parent.