[algogeeks] Diff b\w BST and binary tree............

2010-08-03 Thread UMESH KUMAR
what is the main difference b/w BST and Binary tree for the purpose of implementation . and what is the Data structure of that. -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algoge...@googlegroups.com. To

Re: [algogeeks] Diff b\w BST and binary tree............

2010-08-03 Thread Anand
While creating BST we follow the rule that element on the left hand side of the root should be less than or equal to the root element and element on the right hand side of the root should be greater than or equal to the root element. For binary tree we don't follow any rule for creating it. Data