国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

LCA---Lowest common ancestor

cooxer / 741人閱讀

摘要:在為根的二叉樹中找的如果找到了就返回這個如果只碰到,就返回如果只碰到,就返回如果都沒有,就返回三種情況都在左子樹中,都在右子樹中,左右分別在二叉樹的左右子樹找和,找到及返回,根據(jù)和是否存在內(nèi)容決定最低公共祖先終止條件,找到或者,或者到,就在

在root為根的二叉樹中找A,B的LCA:
如果找到了就返回這個LCA
如果只碰到A,就返回A
如果只碰到B,就返回B
如果都沒有,就返回null

/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */

public class Solution {
    /**
     * @param root: The root of the binary search tree.
     * @param A and B: two nodes in a Binary.
     * @return: Return the least common ancestor(LCA) of the two nodes.
     */
    public TreeNode lowestCommonAncestor(TreeNode root, TreeNode node1, TreeNode node2) {
        
         //三種情況: 都在左子樹中, 都在右子樹中, 左右分別
        //在二叉樹的左右子樹找node1和node2, 找到及返回, 根據(jù)left和right是否存在內(nèi)容決定最低公共祖先
        if (root == null || root == node1 || root == node2){
            return root;
        }
        
        TreeNode left = lowestCommonAncestor(root.left, node1, node2);
        TreeNode right = lowestCommonAncestor(root.right, node1, node2);
        
        if (left != null && right != null){
            return root;
        }
        
        if (left != null){
            return left; 
        }
        if (right != null){
            return right;
        }
        else{
            return null;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        //終止條件, 找到node1或者node2,或者到null node, 就return
        // if (root == null || root == node1 || root == node2) {
        //     return root;
        // }
        
        // Divide (在left child和right child里面找node1和2)
        // TreeNode left = lowestCommonAncestor(root.left, node1, node2);
        // TreeNode right = lowestCommonAncestor(root.right, node1, node2);
        
        // Conquer  
        // if (left != null && right != null) {
        //     return root;
        // } 
        // if (left != null) {
        //     return left;
        // }
        // if (right != null) {
        //     return right;
        // }
        // return null;            //當left sub和right sub都沒有n1或n2
    }
}

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/66444.html

相關(guān)文章

  • [Leetcode] Lowest Common Ancestor of a Binary Tree

    摘要:如果子樹中有目標節(jié)點,標記為那個目標節(jié)點,如果沒有,標記為。顯然,如果左子樹右子樹都有標記,說明就已經(jīng)找到最小公共祖先了。如果在根節(jié)點為的左右子樹中找的公共祖先,則必定是本身。只有一個節(jié)點正好左子樹有,右子樹也有的時候,才是最小公共祖先。 Lowest Common Ancestor of a Binary Search Tree 最新更新請見:https://yanjia.me/zh...

    Dr_Noooo 評論0 收藏0
  • [LintCode/LeetCode] Lowest Common Ancestor of BST/

    摘要:遞歸左右子樹,若左右子樹都有解,那么返回根節(jié)點若僅左子樹有解,返回左子樹若僅右子樹有解,返回右子樹若都無解,返回。對于而言,更為簡單公共祖先一定是大于等于其中一個結(jié)點,小于等于另一個結(jié)點。 Problem Given the root and two nodes in a Binary Tree. Find the lowest common ancestor(LCA) of the ...

    dinfer 評論0 收藏0
  • leetcode235-236 lowest common ancestor

    摘要:如果左右子樹返回的最低共同父節(jié)點值都不是空,說明和分別位于的左右子樹,那么就是最低共同父節(jié)點。 235題-題目要求 Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST. According to the definition of L...

    chadLi 評論0 收藏0
  • 貢獻一個 Laravel 樹形結(jié)構(gòu)管理包 ClosureTable

    摘要:優(yōu)雅的樹形數(shù)據(jù)結(jié)構(gòu)管理包基于模式設(shè)計歡迎不吝優(yōu)雅的樹形數(shù)據(jù)設(shè)計模式數(shù)據(jù)和結(jié)構(gòu)分表操作數(shù)據(jù)不影響結(jié)構(gòu)一個操作簡單無需修改表兼容舊數(shù)據(jù)完善的樹操作方法支持生成樹形數(shù)據(jù)支持多棵樹并存多個根支持節(jié)點樹修復支持軟刪除依賴關(guān)于將樹中每個節(jié)點與其后代節(jié)點 About 優(yōu)雅的樹形數(shù)據(jù)結(jié)構(gòu)管理包,基于Closure Table模式設(shè)計. github 歡迎不吝Star Features 優(yōu)雅的樹形數(shù)據(jù)...

    aikin 評論0 收藏0
  • React Event 實現(xiàn)原理

    摘要:為組建的實例化對象為組件的唯一標識為組建的實例化對象為事件名稱為我們寫的回調(diào)函數(shù),也就是列子中的在每個中只實例化一次。 React 元素的事件處理和 DOM元素的很相似。但是有一點語法上的不同: React事件綁定屬性的命名采用駝峰式寫法,而不是小寫。 如果采用 JSX 的語法你需要傳入一個函數(shù)作為事件處理函數(shù),而不是一個字符串(DOM元素的寫法) 并且 React 自己內(nèi)部實現(xiàn)了...

    xiguadada 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<