Created
January 5, 2013 06:10
-
-
Save anonymous/4460083 to your computer and use it in GitHub Desktop.
An O(NP) Sequence Comparison Algorithm" for PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// An O(NP) Sequence Comparison Algorithm" for PHP | |
// Copyright (c) 2013 Logue <[email protected]> All rights reserved. | |
// License: BSD license | |
// based on https://github.com/cubicdaiya/onp | |
/** | |
* The algorithm implemented here is based on "An O(NP) Sequence Comparison Algorithm" | |
* by described by Sun Wu, Udi Manber and Gene Myers | |
*/ | |
class Diff{ | |
const SES_DELETE = '-'; | |
const SES_COMMON = ' '; | |
const SES_ADD = '+'; | |
private $a, $b, $m, $n; | |
private $editdis = 0; | |
private $reverse = false; | |
private $pathposi = array(); | |
private $path = array(); | |
private $ses = array(); | |
private $lcs = ''; | |
/** | |
* コンストラクタ | |
* @param array $a 元データー | |
* @param array $b 新しいデーター | |
*/ | |
public function __construct(/* array */$a, /* array */$b){ | |
$this->a = $a; | |
$this->b = $b; | |
$this->m = count($a); | |
$this->n = count($b); | |
if ($this->m >= $this->n){ | |
$this->a = $b; | |
$this->b = $a; | |
$this->m = count($b); | |
$this->n = count($a); | |
$this->reverse = true; | |
} | |
self::compose(); | |
} | |
private function compose(){ | |
$p = -1; | |
$delta = $this->n - $this->m; | |
$size = $this->m + $this->n + 3; | |
$offset = $this->m + 1; | |
$fp = array_fill(0, $size, -1); | |
$this->path = array_fill(0, $size, -1); | |
do { | |
++$p; | |
for ($k=-$p; $k<=$delta-1; ++$k) { | |
$fp[$k+$offset] = self::snake($k, $fp[$k-1+$offset]+1, $fp[$k+1+$offset]); | |
} | |
for ($k=$delta+$p; $k>=$delta+1; --$k) { | |
$fp[$k+$offset] = self::snake($k, $fp[$k-1+$offset]+1, $fp[$k+1+$offset]); | |
} | |
$fp[$delta+$offset] = self::snake($delta, $fp[$delta-1+$offset]+1, $fp[$delta+1+$offset]); | |
} while($fp[$delta+$offset] !== $this->n); | |
$this->editdis = $delta + 2 * $p; | |
$r = $this->path[$delta+$offset]; | |
$epc = array(); | |
while ($r !== -1) { | |
$_pathposi = $this->pathposi[$r]; | |
$epc[] = array( | |
'x'=>$_pathposi['x'], | |
'y'=>$_pathposi['y'], | |
'k'=>null | |
); | |
$r = $_pathposi['k']; | |
} | |
self::recordseq($epc); | |
} | |
private function snake($k, $p, $pp){ | |
$offset = $this->m+1; | |
$r = ($p > $pp) ? $this->path[$k-1+$offset] : $this->path[$k+1+$offset]; | |
$y = max($p, $pp); | |
$x = $y - $k; | |
while ($x < $this->m && $y < $this->n && $this->a[$x] === $this->b[$y]) { | |
$x++; | |
$y++; | |
} | |
$this->path[$k+$offset] = count($this->pathposi); | |
$this->pathposi[] = array('x'=>$x, 'y'=>$y, 'k'=>$r); | |
return $y; | |
} | |
private function recordseq ($epc) { | |
$x_idx = $y_idx = 1; | |
$px_idx = $py_idx = 0; | |
for ($i = count($epc) - 1; $i>=0; --$i) { | |
while($px_idx < $epc[$i]['x'] || $py_idx < $epc[$i]['y']) { | |
if ($epc[$i]['y'] - $epc[$i]['x'] > $py_idx - $px_idx) { | |
if ($this->reverse) { | |
$this->ses[] = array(self::SES_DELETE, $this->b[$py_idx]); | |
} else { | |
$this->ses[] = array(self::SES_ADD, $this->b[$py_idx]); | |
} | |
++$y_idx; | |
++$py_idx; | |
} else if ($epc[$i]['y'] - $epc[$i]['x'] < $py_idx - $px_idx) { | |
if ($this->reverse) { | |
$this->ses[] = array(self::SES_ADD, $this->a[$px_idx]); | |
} else { | |
$this->ses[] = array(self::SES_DELETE, $this->a[$px_idx]); | |
} | |
++$x_idx; | |
++$px_idx; | |
} else { | |
$this->ses[] = array(self::SES_COMMON, $this->a[$px_idx]); | |
$this->lcs += $this->a[$px_idx]; | |
++$x_idx; | |
++$y_idx; | |
++$px_idx; | |
++$py_idx; | |
} | |
} | |
} | |
} | |
public function getEditDistance(){ | |
return $this->editdis; | |
} | |
public function getLcs() { | |
return $this->lcs; | |
} | |
public function getSes() { | |
return $this->ses; | |
} | |
public function getDiff(){ | |
foreach ($this->ses as $k=>$v){ | |
$ret[$k] = $v[0] . $v[1]; | |
} | |
return $ret; | |
} | |
public function __toString(){ | |
return join("\n",self::getDiff()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment