剑指offer-8 二叉树的下一个节点
Posted Muche
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-8 二叉树的下一个节点相关的知识,希望对你有一定的参考价值。
剑指offer-8 二叉树的下一个节点
题目:
给定一个二叉树和其中的一个结点,请找出中序遍历顺序的下一个结点并且返回。注意,树中的结点不仅包含左右子结点,同时包含指向父结点的指针。
思路:
- 右侧有节点,直接打印
- 右侧没节点
- 此节点的父节点的左节点是自己,打印
- 此节点的父节点的右节点是自己,向上继续找,直到满足2.1
自己解答:
/*
public class TreeLinkNode {
int val;
TreeLinkNode left = null;
TreeLinkNode right = null;
TreeLinkNode next = null;
TreeLinkNode(int val) {
this.val = val;
}
}
*/
public class Solution {
public TreeLinkNode GetNext(TreeLinkNode pNode)
{
if(pNode == null) return null;
TreeLinkNode next = null;
if(pNode.right != null){
TreeLinkNode pRight = pNode.right;
while(pRight.left != null)
pRight = pRight.left;
next = pRight;
}else if(pNode.next != null){
TreeLinkNode curNode = pNode;
TreeLinkNode pParrent = pNode.next;
while(pParrent != null && pParrent.right == curNode){
curNode = pParrent;
pParrent = pParrent.next;
}
next = pParrent;
}
return next;
}
}
犯的错误:
注意:
别人解答:
以上是关于剑指offer-8 二叉树的下一个节点的主要内容,如果未能解决你的问题,请参考以下文章