标签:时间复杂度 etc node root htm 代码 int 描述 指定
设计一个算法,找出二叉搜索树中指定节点的“下一个”节点(也即中序后继)。
如果指定节点没有对应的“下一个”节点,则返回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;
}
};
标签:时间复杂度 etc node root htm 代码 int 描述 指定
原文地址:https://www.cnblogs.com/flix/p/12837756.html