Skip to content

Files

Latest commit

Jun 17, 2019
7820b50 · Jun 17, 2019

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 17, 2019
Jun 17, 2019

Determine whether a tree is a valid binary search tree.

A binary search tree is a tree with two children, left and right, and satisfies the constraint that the key in the left child must be less than or equal to the root and the key in the right child must be greater than or equal to the root.