摘要:題目要求檢驗(yàn)二叉查找樹是否符合規(guī)則。二叉查找樹是指當(dāng)前節(jié)點(diǎn)左子樹上的值均比其小,右子樹上的值均比起大。因此在這里我們采用棧的方式實(shí)現(xiàn)中序遍歷,通過(guò)研究中序遍歷是否遞增來(lái)判斷二叉查找樹是否符合規(guī)則。
題目要求
Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as follows: The left subtree of a node contains only nodes with keys less than the node"s key. The right subtree of a node contains only nodes with keys greater than the node"s key. Both the left and right subtrees must also be binary search trees. Example 1: 2 / 1 3 Binary tree [2,1,3], return true. Example 2: 1 / 2 3 Binary tree [1,2,3], return false.
檢驗(yàn)二叉查找樹是否符合規(guī)則。二叉查找樹是指當(dāng)前節(jié)點(diǎn)左子樹上的值均比其小,右子樹上的值均比起大。
思路一:stack 深度優(yōu)先算法如果了解中序遍歷的同學(xué)可以知道,一顆二叉查找樹的中序遍歷結(jié)果應(yīng)當(dāng)是一個(gè)數(shù)值有小到大遞增的數(shù)組。正因?yàn)橹行虮闅v是指先遍歷左子樹,接著遍歷中間節(jié)點(diǎn),再遍歷右子樹,恰好和查找樹的值遞增順序相同。因此在這里我們采用棧的方式實(shí)現(xiàn)中序遍歷,通過(guò)研究中序遍歷是否遞增來(lái)判斷二叉查找樹是否符合規(guī)則。代碼如下:
public boolean isValidBST(TreeNode root) { long currentVal = Long.MIN_VALUE; LinkedListstack = new LinkedList (); while(root!=null || !stack.isEmpty()){ while(root!=null){ stack.push(root); root = root.left; } root = stack.pop(); if(root.val<=currentVal) return false; currentVal = root.val; root = root.right; } return true; }
思路二:遞歸 深度優(yōu)先算法這里需要注意的是,將最小值取為Long.MIN_VALUE,以免出現(xiàn)Integer.MIN_VALUE的誤判
我們知道,任何一個(gè)二叉查找樹的節(jié)點(diǎn)都有一個(gè)取值區(qū)間,如果我們能夠找到該節(jié)點(diǎn)的取值區(qū)間以及其左右子節(jié)點(diǎn)對(duì)應(yīng)的取值區(qū)間,就可以遞歸的判斷該樹是否是一顆二叉查找樹。為了實(shí)現(xiàn)遞歸,我們需要找到其中的一般情況。假設(shè)我們已經(jīng)知道了當(dāng)前節(jié)點(diǎn)的區(qū)間,那么左子節(jié)點(diǎn)的上限即為父節(jié)點(diǎn)的值,而下限則應(yīng)該為父節(jié)點(diǎn)的下限。同理,右子節(jié)點(diǎn)的下限是父節(jié)點(diǎn)的值,而上限也就是父節(jié)點(diǎn)的上線。
代碼如下:
public boolean isValidBST2(TreeNode root){ return isValid(root, Long.MIN_VALUE, Long.MAX_VALUE); } public boolean isValid(TreeNode treeNode, long lowerBound, long upperBound){ if(treeNode==null) return true; if(treeNode.val>=upperBound || treeNode.val<=lowerBound) return false; return isValid(treeNode.left, lowerBound,treeNode.val) && isValid(treeNode.right, treeNode.val, upperBound); }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/67432.html
摘要:題目要求檢驗(yàn)二叉查找樹是否符合規(guī)則。二叉查找樹是指當(dāng)前節(jié)點(diǎn)左子樹上的值均比其小,右子樹上的值均比起大。因此在這里我們采用棧的方式實(shí)現(xiàn)中序遍歷,通過(guò)研究中序遍歷是否遞增來(lái)判斷二叉查找樹是否符合規(guī)則。 題目要求 Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is...
摘要:題目要求判斷一個(gè)樹是否是二叉查找樹。二叉查找樹即滿足當(dāng)前節(jié)點(diǎn)左子樹的值均小于當(dāng)前節(jié)點(diǎn)的值,右子樹的值均大于當(dāng)前節(jié)點(diǎn)的值。思路一可以看到,對(duì)二叉查找樹的中序遍歷結(jié)果應(yīng)當(dāng)是一個(gè)遞增的數(shù)組。這里我們用堆棧的方式實(shí)現(xiàn)中序遍歷。 題目要求 given a binary tree, determine if it is a valid binary search tree (BST). Assu...
摘要:注意這里的結(jié)構(gòu)和不同的二叉樹遍歷一樣,如果到空節(jié)點(diǎn)就返回,否則遞歸遍歷左節(jié)點(diǎn)和右節(jié)點(diǎn)。唯一不同是加入了和,所以要在遞歸之前先判斷是否符合和的條件。代碼如果該節(jié)點(diǎn)大于上限返回假如果該節(jié)點(diǎn)小于下限返回假遞歸判斷左子樹和右子樹 Validate Binary Search Tree Given a binary tree, determine if it is a valid binary...
Largest BST Subtree Given a binary tree, find the largest subtree which is a Binary Search Tree (BST), where largest means subtree with largest number of nodes in it. Note: A subtree must include all ...
摘要:小鹿題目驗(yàn)證二叉搜索樹給定一個(gè)二叉樹,判斷其是否是一個(gè)有效的二叉搜索樹。假設(shè)一個(gè)二叉搜索樹具有如下特征節(jié)點(diǎn)的左子樹只包含小于當(dāng)前節(jié)點(diǎn)的數(shù)。所有左子樹和右子樹自身必須也是二叉搜索樹。算法思路定義全局的變量,用來(lái)返回是否為二叉搜索樹。 Time:2019/4/24Title: Vaildata Binary Search TreeDifficulty: MediumAuthor: 小鹿 ...
閱讀 2418·2021-11-16 11:44
閱讀 1877·2021-10-12 10:12
閱讀 2160·2021-09-22 15:22
閱讀 3008·2021-08-11 11:17
閱讀 1505·2019-08-29 16:53
閱讀 2653·2019-08-29 14:09
閱讀 3474·2019-08-29 14:03
閱讀 3301·2019-08-29 11:09