My LeetCode grinding. Trying to do a problem a day.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223
  1. Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node's value equals the given value. Return the subtree rooted with that node. If such node doesn't exist, you should return NULL.
  2. For example,
  3. Given the tree:
  4. 4
  5. / \
  6. 2 7
  7. / \
  8. 1 3
  9. And the value to search: 2
  10. You should return this subtree:
  11. 2
  12. / \
  13. 1 3
  14. In the example above, if we want to search the value 5, since there is no node with value 5, we should return NULL.
  15. Note that an empty tree is represented by NULL, therefore you would see the expected output (serialized tree format) as [], not null.