I'm slightly confused about how the order of nodes can be arranged in a binary search tree. Can there be node of a subtree in a binary search tree on the left that is larger than the root node?
For example, would the following be a binary search tree?
2
/ \
1 4
/ \
3
What confuses me above is whether or not the right subtree of the 1 (3) can be larger than the original root node (2).