Two Sum IV - Input is a BST(bfs+set)

Given a Binary Search Tree and a target number, return true if there exist two elements in the BST such that their sum is equal to the given target.

Example 1:

Input:

    5
   / \
  3   6
 / \   \
2   4   7

Target = 9


Output:
 True

Example 2:

Input:

    5
   / \
  3   6
 / \   \
2   4   7

Target = 28

分析

two sum。一个queue存元素,一个set存值。bfs 每次检查k-root.val是否在set里

Last updated

Was this helpful?