My LeetCode grinding. Trying to do a problem a day.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

problem.txt 674B

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.