for BT to be a BST the left child should be smaller then parent and right should be greater.
25<-50->75
12<-25->37
35<-75->87
END<-12->END
END<-37->END
END<-35->END
END<-87->END
is this a binary search tree i am asking this because bhaiya only said that lest child should be less then parent and right child should be greater then parent but here the left child of 75 is also then the root node.
so while inorder traversal we will not get sorted arraylist but acc.to the concept of first it should be BST(Bhaiya didnt mentioned anywhere that the left child of right should be lesser then root also.