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.