Trees: Is This a Binary Search Tree?

  • + 1 comment

    Very nice solution! My only stylistic suggestion is to replace

    root.data < max_ and root.data > min_
    

    in the third line with

    min_ < root.data < max_
    

    for ease of reading/brevity.