-
-
Notifications
You must be signed in to change notification settings - Fork 501
/
Copy pathSplayTreeNode.php
51 lines (44 loc) · 1.1 KB
/
SplayTreeNode.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
<?php
/*
* Created by: Ramy-Badr-Ahmed (https://github.com/Ramy-Badr-Ahmed) in Pull Request: #168
* https://github.com/TheAlgorithms/PHP/pull/168
*
* Please mention me (@Ramy-Badr-Ahmed) in any issue or pull request addressing bugs/corrections to this file.
* Thank you!
*/
namespace DataStructures\SplayTree;
class SplayTreeNode
{
/**
* @var int|string
*/
public int $key;
/**
* @var mixed
*/
public $value;
public ?SplayTreeNode $left;
public ?SplayTreeNode $right;
public ?SplayTreeNode $parent;
/**
* @param int $key The key of the node.
* @param mixed $value The associated value.
*/
public function __construct(int $key, $value)
{
$this->key = $key;
$this->value = $value;
// Set all node pointers to null initially
$this->left = null;
$this->right = null;
$this->parent = null;
}
public function isLeaf(): bool
{
return $this->left === null && $this->right === null;
}
public function isRoot(): bool
{
return $this->parent === null;
}
}