-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKthSmallestElementInABST.php
54 lines (46 loc) · 1.15 KB
/
KthSmallestElementInABST.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
45
46
47
48
49
50
51
52
53
54
<?php
declare(strict_types=1);
namespace leetcode;
use leetcode\util\TreeNode;
class KthSmallestElementInABST
{
public static function kthSmallest(TreeNode $root, int $k): int
{
if ($k <= 0) {
return 0;
}
$stack = [];
while ($root || $stack) {
while ($root && $root->val) {
array_push($stack, $root);
$root = $root->left;
}
$root = array_pop($stack);
if (--$k === 0) {
break;
}
$root = $root->right;
}
return $root->val;
}
public static function kthSmallest2(TreeNode $root, int $k): int
{
if ($k <= 0) {
return 0;
}
$n = 0;
self::helper($root, $k, $n);
return $n;
}
private static function helper(?TreeNode $node, int &$k, int &$n)
{
if ($node instanceof TreeNode && $node->val) {
self::helper($node->left, $k, $n);
if (--$k === 0) {
$n = $node->val;
return;
}
self::helper($node->right, $k, $n);
}
}
}