AcWing 19. 二叉树的下一个节点
原题链接
中等
作者:
沙漠绿洲
,
2020-08-22 15:27:27
,
所有人可见
,
阅读 308
C++ 代码
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode *father;
* TreeNode(int x) : val(x), left(NULL), right(NULL), father(NULL) {}
* };
*/
class Solution {
public:
TreeNode* inorderSuccessor(TreeNode* p) {
if(p->right) {
p = p->right;
while(p->left) p = p->left;
return p;
}
while(p->father && p->father->right == p) p = p->father;
return p->father;
}
};