91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

LeetCode Easy653中兩數之和輸入為BST的示例分析

發布時間:2021-09-17 15:59:37 來源:億速云 閱讀:118 作者:柒染 欄目:編程語言

LeetCode Easy653中兩數之和輸入為BST的示例分析,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

Description

https://leetcode.com/problems/two-sum-iv-input-is-a-bst/

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

Example 1: LeetCode Easy653中兩數之和輸入為BST的示例分析

Input: root = [5,3,6,2,4,null,7], k = 9
Output: true

Example 2:

LeetCode Easy653中兩數之和輸入為BST的示例分析

Input: root = [5,3,6,2,4,null,7], k = 28
Output: false

Example 3:

Input: root = [2,1,3], k = 4
Output: true

Example 4:

Input: root = [2,1,3], k = 1
Output: false

Example 5:

Input: root = [2,1,3], k = 3 Output: true

Constraints:

  • The number of nodes in the tree is in the range $[1, 10^4]$.

  • $-10^4 <= Node.val <= 10^4$

  • root is guaranteed to be a valid binary search tree.

  • $-10^5 <= k <= 10^5$

Analysis

用兩指針方法,一指針前序遍歷,另一指針二分查找。

Submission

public class TwoSumIVInputIsABST {

	public boolean findTarget(TreeNode root, int k) {
		return traverse(root, root, k);
	}

	// 前序遍歷
	private boolean traverse(TreeNode node, TreeNode root, int k) {
		if (node == null)
			return false;

		// node.val恰好是k的一半時,根據BST特性,沒必要找另一個節點
		if (2 * node.val != k && findTarget2(root, k - node.val))
			return true;

		return traverse(node.left, root, k) || traverse(node.right, root, k);
	}

	// 二分查找
	private boolean findTarget2(TreeNode node, int targetValue) {
		if (node == null)
			return false;

		if (node.val == targetValue)
			return true;

		return findTarget2(targetValue < node.val ? node.left : node.right, targetValue);
	}

}

Test

import static org.junit.Assert.*;
import org.junit.Test;

import com.lun.util.BinaryTree;
import com.lun.util.BinaryTree.TreeNode;

public class TwoSumIVInputIsABSTTest {

	@Test
	public void test() {
		TwoSumIVInputIsABST obj = new TwoSumIVInputIsABST();

		TreeNode root1 = BinaryTree.integers2BinaryTree(5, 3, 6, 2, 4, null, 7);
		assertTrue(obj.findTarget(root1, 9));
		assertFalse(obj.findTarget(root1, 28));

		TreeNode root2 = BinaryTree.integers2BinaryTree(2, 1, 3);
		assertTrue(obj.findTarget(root2, 4));
		assertFalse(obj.findTarget(root2, 1));
		assertTrue(obj.findTarget(root2, 3));
	}
}

關于LeetCode Easy653中兩數之和輸入為BST的示例分析問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

城口县| 吴堡县| 大方县| 郑州市| 哈巴河县| 西充县| 灵丘县| 湘潭市| 苍梧县| 漳平市| 进贤县| 河池市| 固阳县| 岳阳市| 连山| 绵竹市| 江阴市| 太仆寺旗| 阳朔县| 二连浩特市| 阿合奇县| 德保县| 区。| 珲春市| 射洪县| 邯郸县| 奉化市| 崇仁县| 延长县| 金阳县| 翁源县| 泸州市| 乐陵市| 湘潭市| 利川市| 宿松县| 灌阳县| 辽阳县| 凤冈县| 泰安市| 阆中市|