X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsebastian%2Fdiff%2Fsrc%2FLCS%2FMemoryEfficientLongestCommonSubsequenceImplementation.php;fp=vendor%2Fsebastian%2Fdiff%2Fsrc%2FLCS%2FMemoryEfficientLongestCommonSubsequenceImplementation.php;h=c1b3121826a283a21a02e7366fd1886565422606;hp=b990dc03c78a1a27d12744a2dd6e26e895e75659;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae diff --git a/vendor/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php b/vendor/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php index b990dc03c..c1b312182 100644 --- a/vendor/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php +++ b/vendor/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php @@ -1,6 +1,6 @@ * @@ -25,43 +25,45 @@ class MemoryEfficientImplementation implements LongestCommonSubsequence */ public function calculate(array $from, array $to) { - $cFrom = count($from); - $cTo = count($to); + $cFrom = \count($from); + $cTo = \count($to); - if ($cFrom == 0) { + if ($cFrom === 0) { return array(); - } elseif ($cFrom == 1) { - if (in_array($from[0], $to)) { + } + + if ($cFrom === 1) { + if (\in_array($from[0], $to, true)) { return array($from[0]); - } else { - return array(); } - } else { - $i = intval($cFrom / 2); - $fromStart = array_slice($from, 0, $i); - $fromEnd = array_slice($from, $i); - $llB = $this->length($fromStart, $to); - $llE = $this->length(array_reverse($fromEnd), array_reverse($to)); - $jMax = 0; - $max = 0; - for ($j = 0; $j <= $cTo; $j++) { - $m = $llB[$j] + $llE[$cTo - $j]; + return array(); + } - if ($m >= $max) { - $max = $m; - $jMax = $j; - } - } + $i = (int) ($cFrom / 2); + $fromStart = \array_slice($from, 0, $i); + $fromEnd = \array_slice($from, $i); + $llB = $this->length($fromStart, $to); + $llE = $this->length(\array_reverse($fromEnd), \array_reverse($to)); + $jMax = 0; + $max = 0; - $toStart = array_slice($to, 0, $jMax); - $toEnd = array_slice($to, $jMax); + for ($j = 0; $j <= $cTo; $j++) { + $m = $llB[$j] + $llE[$cTo - $j]; - return array_merge( - $this->calculate($fromStart, $toStart), - $this->calculate($fromEnd, $toEnd) - ); + if ($m >= $max) { + $max = $m; + $jMax = $j; + } } + + $toStart = \array_slice($to, 0, $jMax); + $toEnd = \array_slice($to, $jMax); + + return \array_merge( + $this->calculate($fromStart, $toStart), + $this->calculate($fromEnd, $toEnd) + ); } /** @@ -72,18 +74,18 @@ class MemoryEfficientImplementation implements LongestCommonSubsequence */ private function length(array $from, array $to) { - $current = array_fill(0, count($to) + 1, 0); - $cFrom = count($from); - $cTo = count($to); + $current = \array_fill(0, \count($to) + 1, 0); + $cFrom = \count($from); + $cTo = \count($to); for ($i = 0; $i < $cFrom; $i++) { $prev = $current; for ($j = 0; $j < $cTo; $j++) { - if ($from[$i] == $to[$j]) { + if ($from[$i] === $to[$j]) { $current[$j + 1] = $prev[$j] + 1; } else { - $current[$j + 1] = max($current[$j], $prev[$j + 1]); + $current[$j + 1] = \max($current[$j], $prev[$j + 1]); } } }