LeetCode-树后继者

Posted Flix

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode-树后继者相关的知识,希望对你有一定的参考价值。

题目描述

设计一个算法,找出二叉搜索树中指定节点的“下一个”节点(也即中序后继)。
如果指定节点没有对应的“下一个”节点,则返回null。
示例:

输入: root = [2,1,3], p = 1

  2
 / 1   3

输出: 2

输入: root = [5,3,6,2,4,null,null,1], p = 6

      5
     /     3   6
   /   2   4
 /   
1

输出: null

思路

本质上是二叉树的中序遍历。使用 pre 表示当前节点的前一个节点,如果 pre->val==目标值,输出当前节点即可。代码如下:

/**
 * 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* inorderSuccessor(TreeNode* root, TreeNode* p) {
        if(root==nullptr || p==nullptr) return nullptr;

        stack<pair<TreeNode*, bool>> s;
        s.push(make_pair(root, false));
        TreeNode* pre = nullptr;
        while(!s.empty()){
            TreeNode* curNode = s.top().first;
            bool visit = s.top().second;
            s.pop();
            if(!visit){
                if(curNode->right!=nullptr) s.push(make_pair(curNode->right, false));
                s.push(make_pair(curNode, true));
                if(curNode->left!=nullptr) s.push(make_pair(curNode->left, false));
            }else{
                if(pre!=nullptr && pre->val==p->val) return curNode;
                if(curNode->val==p->val) pre = curNode;

            }
        }
        return nullptr;
    }
};
  • 时间复杂度:O(n)
  • 空间复杂度:O(h)
    h 为树高。



以上是关于LeetCode-树后继者的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-树后继者

⭐算法入门⭐《二叉树 - 二叉搜索树》简单09 —— LeetCode 285. 二叉搜索树中的中序后继

Leetcode——二叉搜索树中的中序后继

[LeetCode] 285. Inorder Successor in BST 二叉搜索树中的中序后继节点

leetcode打卡--面试题 04.06. 后继者

[LeetCode] Inorder Successor in BST II 二叉搜索树中的中序后继节点之二