-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Node.php
281 lines (226 loc) · 5.94 KB
/
Node.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
/**
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace loophp\phptree\Node;
use InvalidArgumentException;
use ReturnTypeWillChange;
use Traversable;
use function array_key_exists;
use function count;
use function in_array;
class Node implements NodeInterface
{
/**
* @var array<NodeInterface>
*/
private array $children;
private ?NodeInterface $parent;
public function __construct(?NodeInterface $parent = null)
{
$this->parent = $parent;
$this->children = [];
}
public function __clone()
{
/** @var NodeInterface $child */
foreach ($this->children as $id => $child) {
$this->children[$id] = $child->clone()->setParent($this);
}
}
public function add(NodeInterface ...$nodes): NodeInterface
{
foreach ($nodes as $node) {
$this->children[] = $node->setParent($this);
}
return $this;
}
public function all(): Traversable
{
yield $this;
/** @var NodeInterface $child */
foreach ($this->children() as $child) {
yield from $child->all();
}
}
public function children(): Traversable
{
yield from $this->children;
}
public function clone(): NodeInterface
{
return clone $this;
}
public function count(): int
{
return iterator_count($this->all()) - 1;
}
public function degree(): int
{
return count($this->children);
}
public function delete(NodeInterface $node, ?NodeInterface $root = null): ?NodeInterface
{
$root = $root ?? $this;
if (null !== ($candidate = $this->find($node))) {
if ($candidate === $root) {
throw new InvalidArgumentException('Unable to delete root node.');
}
if (null !== $parent = $candidate->getParent()) {
$parent->remove($node);
}
return $candidate->setParent(null);
}
return null;
}
public function depth(): int
{
return iterator_count($this->getAncestors());
}
public function find(NodeInterface $node): ?NodeInterface
{
/** @var NodeInterface $candidate */
foreach ($this->all() as $candidate) {
if ($candidate === $node) {
return $node;
}
}
return null;
}
public function getAncestors(): Traversable
{
$node = $this;
while ($node = $node->getParent()) {
yield $node;
}
}
/**
* @return Traversable<NodeInterface>
*/
public function getIterator(): Traversable
{
yield from $this->all();
}
public function getParent(): ?NodeInterface
{
return $this->parent;
}
public function getSibblings(): Traversable
{
$parent = $this->parent;
if (null === $parent) {
return [];
}
foreach ($parent->children() as $child) {
if ($child === $this) {
continue;
}
yield $child;
}
}
public function height(): int
{
$height = $this->depth();
/** @var NodeInterface $child */
foreach ($this->children() as $child) {
$height = max($height, $child->height());
}
return $height;
}
public function isLeaf(): bool
{
return 0 === $this->degree();
}
public function isRoot(): bool
{
return null === $this->parent;
}
public function label(): string
{
return sha1(spl_object_hash($this));
}
public function level(int $level): Traversable
{
/** @var NodeInterface $node */
foreach ($this->all() as $node) {
if ($node->depth() === $level) {
yield $node;
}
}
}
/**
* @param mixed $offset
*/
#[ReturnTypeWillChange]
public function offsetExists($offset): bool
{
return array_key_exists($offset, $this->children);
}
/**
* @param mixed $offset
*/
#[ReturnTypeWillChange]
public function offsetGet($offset): NodeInterface
{
return $this->children[$offset];
}
/**
* @param mixed $offset
* @param mixed $value
*/
public function offsetSet($offset, $value): void
{
if (!($value instanceof NodeInterface)) {
throw new InvalidArgumentException(
'The value must implements NodeInterface.'
);
}
$this->children[$offset] = $value->setParent($this);
}
/**
* @param mixed $offset
*/
#[ReturnTypeWillChange]
public function offsetUnset($offset): void
{
unset($this->children[$offset]);
}
public function remove(NodeInterface ...$nodes): NodeInterface
{
$this->children =
array_filter(
$this->children,
static function ($child) use ($nodes) {
return !in_array($child, $nodes, true);
}
);
return $this;
}
public function replace(NodeInterface $node): ?NodeInterface
{
if (null === $parent = $this->getParent()) {
return null;
}
// Find the key of the current node in the parent.
foreach ($parent->children() as $key => $child) {
if ($this === $child) {
$parent[$key] = $node;
break;
}
}
return $parent;
}
public function setParent(?NodeInterface $node): NodeInterface
{
$this->parent = $node;
return $this;
}
public function withChildren(?NodeInterface ...$nodes): NodeInterface
{
$clone = clone $this;
$clone->children = [];
return $clone->add(...array_filter($nodes));
}
}