Intro To Trees Insertion Problem

In a BST if we have root node 15 and data we want to insert is also 15 then will the data come on right side or left side ?

Hi Abhinav,
If you are specifically talking about BST Insertion then It wont be a BST, as Root Node data needs to be strictly greater than its Left counterparts and should be strictly smaller than its Right counterparts.