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

溫馨提示×

溫馨提示×

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

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

leetCode 235. Lowest Common Ancestor of a Binary Search Tree 二排序樹問題

發布時間:2020-09-14 10:46:07 來源:網絡 閱讀:376 作者:313119992 欄目:編程語言

235. Lowest Common Ancestor of a Binary Search Tree


Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST.

According to the definition of LCA on Wikipedia: “The lowest common ancestor is defined between two nodes v and w as the lowest node in T that has both v and w as descendants (where we allow a node to be a descendant of itself).”

        _______6______
       /              \
    ___2__          ___8__
   /      \        /      \
   0      _4       7       9
         /  \
         3   5

For example, the lowest common ancestor (LCA) of nodes 2 and 8 is 6. Another example is LCA of nodes 2 and 4 is 2, since a node can be a descendant of itself according to the LCA definition.

思路:

mine思路:

1.將各個節點的從root到節點的路徑都記錄下來vector<vector<int>>,vector中最后一個元素為當前節點。

2.找到目標的兩個vector,比較之找到較短的"根"


others思路:

在二叉查找樹種,尋找兩個節點的最低公共祖先。

1、如果a、b都比根節點小,則在左子樹中遞歸查找公共節點。

2、如果a、b都比根節點大,則在右子樹中查找公共祖先節點。

3、如果a、b一個比根節點大,一個比根節點小,或者有一個等于根節點,則根節點即為最低公共祖先。


代碼如下:(代碼實現為others思路)

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
 
class Solution {
public:
    TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
        int pVal = p->val;
        int qVal = q->val;
        int rootVal = root->val;
        if(pVal < rootVal && qVal < rootVal)
        {
            return lowestCommonAncestor(root->left,p,q);
        }
        else if(pVal > rootVal && qVal > rootVal)
        {
            return lowestCommonAncestor(root->right,p,q);
        }
        return root;
    }
};

2016-08-07 09:47:25

向AI問一下細節

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

AI

长乐市| 岳西县| 迁安市| 进贤县| 神农架林区| 湟源县| 高阳县| 登封市| 进贤县| 类乌齐县| 蒲城县| 资兴市| 株洲市| 新田县| 元朗区| 竹山县| 盐源县| 双城市| 南投县| 汉寿县| 张北县| 塘沽区| 巢湖市| 巴林右旗| 庆元县| 万宁市| 耒阳市| 文山县| 盈江县| 宜都市| 秦皇岛市| 深泽县| 柳江县| 岫岩| 思茅市| 静安区| 景宁| 五家渠市| 诸城市| 土默特右旗| 西林县|