-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStrategy.php
94 lines (79 loc) · 2.05 KB
/
Strategy.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
<?php
namespace DesignPatterns\Behavioral;
/**
* Strategy interface declares operations common to all supported versions of some algorithm
*/
interface SortStrategy
{
public function sort(array $data): array;
}
/**
* Concrete strategy, implements bubble sorting algorithm
*/
class BubbleSortStrategy implements SortStrategy
{
public function sort(array $data): array
{
// stub
echo 'Sorting using bubble sort..';
return $data;
}
}
/**
* Concrete strategy, implements quick sorting algorithm
*/
class QuickSortStrategy implements SortStrategy
{
public function sort(array $data): array
{
// stub
echo 'Sorting using quick sort..';
return $data;
}
}
/**
* Client maintains a reference to one of the Strategy objects.
* It should work with Strategy interface only.
*/
class Sorter
{
protected $sortStrategy;
/**
* Context accepts a strategy through the constructor
* @param SortStrategy $sortStrategy
*/
public function __construct(SortStrategy $sortStrategy)
{
$this->sortStrategy = $sortStrategy;
}
/**
* But also provides a setter to change strategy at runtime
* @param SortStrategy $sortStrategy
*/
public function setStrategy(SortStrategy $sortStrategy)
{
$this->sortStrategy = $sortStrategy;
}
/**
* Client delegates some work to the Strategy object instead of
* implementing multiple versions of the algorithm on its own
* @param array $data
* @return array
*/
public function sortArray(array $data): array
{
return $this->sortStrategy->sort($data);
}
}
# Client code example
$data = [4, 2, 1, 5, 9];
// for small amount of data the "Bubble Sort" algorithm will be used
// and for large amounts - the "Quick Sort" algorithm
if (count($data) < 10) {
$sorter = new Sorter(new BubbleSortStrategy());
$sorter->sortArray($data);
} else {
$sorter = new Sorter(new QuickSortStrategy());
$sorter->sortArray($data);
}
/* Output: Sorting using bubble sort.. */