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

二叉树的下一个结点

类似于Leetcode 173. 二叉搜索树迭代器

题目

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

方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding:utf-8 -*-
# class TreeLinkNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
# self.next = None
class Solution:
def GetNext(self, pNode):
# write code here
if not pNode:
return
if pNode.right:
node=pNode.right
while node.left:
node=node.left
return node
else:
while pNode.next:
if pNode==pNode.next.left:
return pNode.next
pNode=pNode.next
return None
```

```python
# -*- coding:utf-8 -*-
# class TreeLinkNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
# self.next = None
class Solution:
def GetNext(self, pNode):
# write code here
if not pNode:
return
if pNode.right:
node=pNode.right
while node.left:
node=node.left
return node
else:
while pNode.next and pNode==pNode.next.right:
pNode=pNode.next
return pNode.next
return None