-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataSet.php
More file actions
135 lines (111 loc) · 2.69 KB
/
DataSet.php
File metadata and controls
135 lines (111 loc) · 2.69 KB
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
<?php
namespace Ianriizky\CodingInterview\DataSet;
use SplFixedArray;
class DataSet
{
/**
* Current size of the collection.
*/
protected int $size = 0;
/**
* Collection of the data set.
*/
protected SplFixedArray $collection;
/**
* Create a new instance class.
*
* @return void
*/
public function __construct(int $initialSize = 10)
{
$this->collection = new SplFixedArray($initialSize);
}
/**
* Add a value to the collection.
*
* @param mixed $value
*/
public function add($value): bool
{
if ($this->contains($value)) {
return false;
}
$this->ensureSize();
$this->collection[$this->size] = $value;
$this->size++;
return true;
}
/**
* Determine whether the given value is exists on the collection or not.
*
* @param mixed $value
*/
public function contains($value): bool
{
foreach ($this->collection as $item) {
if ($value === $item) {
return true;
}
}
return false;
}
/**
* Return size of collection.
*/
public function size(): int
{
return $this->size;
}
/**
* Return collection of the data set.
*/
public function collection(): SplFixedArray
{
return $this->collection;
}
/**
* Remove a value from the collection.
*
* @param mixed $value
*/
public function remove($value): bool
{
if (! $this->contains($value)) {
return false;
}
$removedIndex = $this->indexOf($value);
for ($index = $removedIndex; $index <= $this->size; $index++) {
$this->collection[$index] = $this->collection[$index + 1];
}
$this->size--;
return true;
}
/**
* Return index of given value.
*
* @param mixed $value
*/
protected function indexOf($value): int
{
for ($index = 0; $index < $this->collection->count(); $index++) {
if ($value === $this->collection[$index]) {
return $index;
}
}
return -1;
}
/**
* Ensure that the data set size is enough to contain the collection.
*/
protected function ensureSize(): void
{
if ($this->size < $this->collection->count()) {
return;
}
$tempCollection = new SplFixedArray($this->size + 1);
for ($index = 0; $index < $this->collection->count(); $index++) {
$tempCollection[$index] = $this->collection[$index];
}
$this->collection = $tempCollection;
}
}