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:
Example 2:
分析
two sum。一个queue存元素,一个set存值。bfs 每次检查k-root.val是否在set里
Last updated