-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy path10.php
44 lines (35 loc) · 1.27 KB
/
10.php
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
<?php
//给定一个二叉树和其中的一个结点,请找出中序遍历顺序的下一个结点并且返回。
//注意,树中的结点不仅包含左右子结点,同时包含指向父结点的指针。
/*class TreeLinkNode{
var $val;
var $left = NULL;
var $right = NULL;
var $next = NULL;
function __construct($x){
$this->val = $x;
}
}*/
//分析二叉树的下一个节点,一共有以下情况:
//1.二叉树为空,则返回空;
//2.节点右孩子存在,则设置一个指针从该节点的右孩子出发,一直沿着指向左子结点的指针找到的叶子节点即为下一个节点;
//3.节点不是根节点。如果该节点是其父节点的左孩子,则返回父节点;否则继续向上遍历其父节点的父节点,重复之前的判断,返回结果。
function GetNext($pNode)
{
if (empty($pNode)) return null;
if ($right = $pNode->right) {
$currentNode = $right;
while ($currentNode->left) {
$currentNode = $currentNode->left;
}
return $currentNode;
}
while ($pNode->next) {
$parent = $pNode->next;
if ($parent->left === $pNode) {
return $parent;
}
$pNode = $pNode->next;
}
return null;
}