@Amit

as per wiki, BST definition is


   - The left subtree of a node contains only nodes with keys *less than the
   node's key*.
   - The right subtree of a node contains only nodes with *keys greater than
   or equal to the node's key*.

so, this following example is not a BST...


Mohit


On Thu, Jul 1, 2010 at 8:04 PM, amit <amitjaspal...@gmail.com> wrote:

> Can a BST have duplicate  entries ??
> .........8
> ......./...\
> .....7......9
> ..../..\..../..\
> ...6...8..8...10
>
> i.e is this a BST .
>
> --
> 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 unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com<algogeeks%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
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 unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to