剑指offer-JZ57二叉树的下一个结点

时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 32M,其他语言64M
热度指数:328729
本题知识点: 树

题目描述

给定一个二叉树和其中的一个结点,请找出中序遍历顺序的下一个结点并且返回。注意,树中的结点不仅包含左右子结点,同时包含指向父结点的指针。

代码

/*function TreeLinkNode(x){
    this.val = x;
    this.left = null;
    this.right = null;
    this.next = null;
}*/
function GetNext(pNode)
{
    if(pNode == null) {return null;}
    if(pNode.right){ //如果存在右子树
        pNode = pNode.right;
        while(pNode.left){
            pNode = pNode.left;
        }
        return pNode;
    }
    while(pNode.next != null){ //如果不存在右子树,则找第一个当前结点是父节点的左孩子的结点
        if(pNode.next.left == pNode) {return pNode.next;}
        pNode = pNode.next;
    }
    return null; //退到了根节点都没找到,则返回null
}

分析:
中序遍历的规则:左根右

你可能感兴趣的:(刷题记录)