Leetcode653.Two Sum IV - Input is a BST兩數之和4-輸入BST

給定一個二叉搜索樹和一個目標結果,如果 BST 中存在兩個元素且它們的和等於給定的目標結果,則返回 true。     struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL),
相關文章
相關標籤/搜索