面试题8:二叉树的下一个节点
Posted guoyu1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题8:二叉树的下一个节点相关的知识,希望对你有一定的参考价值。
1、题目描述:
给定一个二叉树和其中的一个结点,请找出中序遍历顺序的下一个结点并且返回。注意,树中的结点不仅包含左右子结点,同时包含指向父结点的指针。
public class TreeLinkNode { int val; TreeLinkNode left = null; TreeLinkNode right = null; TreeLinkNode next = null; TreeLinkNode(int val) { this.val = val; } }
2、思路:
以该二叉树为例,中序遍历为:{D,B,H,E,I,A,F,C,G}
仔细观察,可以把中序下一结点归为几种类型:
-
有右子树,下一结点是右子树中的最左结点,例如 B,下一结点是 H
-
无右子树,且结点是该结点父结点的左子树,则下一结点是该结点的父结点,例如 H,下一结点是 E
-
无右子树,且结点是该结点父结点的右子树,则我们一直沿着父结点追朔,直到找到某个结点是其父结点的左子树,如果存在这样的结点,那么这个结点的父结点就是我们要找的下一结点。例如 I,下一结点是 A;例如 G,并没有符合情况的结点,所以 G 没有下一结点
3、代码:
public class Solution { public TreeLinkNode GetNext(TreeLinkNode pNode) { // 1. if (pNode.right != null) { TreeLinkNode pRight = pNode.right; while (pRight.left != null) { pRight = pRight.left; } return pRight; } // 2. if (pNode.next != null && pNode.next.left == pNode) { return pNode.next; } // 3. if (pNode.next != null) { TreeLinkNode pNext = pNode.next; while (pNext.next != null && pNext.next.right == pNext) { pNext = pNext.next; } return pNext.next; } return null; } }
以上是关于面试题8:二叉树的下一个节点的主要内容,如果未能解决你的问题,请参考以下文章