剑指offer | 二叉树的下一个结点 | 34

目录
剑指offer | 二叉树的下一个结点 | 34

思路分析

剑指offer | 二叉树的下一个结点 | 34

cpp

/**
 * 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) {
        while(p->right){ // 如果存在右子树
            p = p->right;
            while(p->left)p = p->left;
            return p;
        }
        while(p->father && p==p->father->right)p = p->father;
        return p->father;
    }
};
上一篇:CF28B pSort 题解


下一篇:构造函数、创建对象、继承、闭包、预解析