Is the below tree representation of 50,100,400,300,280 correct way to represent cartesian tree?

Is the below tree representation of 50,100,400,300,280 correct way to represent cartesian tree? Correct Answer true

A tree with heap property (parent is either small or big than children) and when traversed in inorder yields the given input sequence is called as a cartesian tree. as the above figure satisies both the properties. note that even min heap tree can be generated. the above is a max heap tree.

Related Questions