Skip to content

Instantly share code, notes, and snippets.

View daredmayo's full-sized avatar

Lalu Ganda daredmayo

View GitHub Profile
@daredmayo
daredmayo / boyer-moore.php
Created May 31, 2012 12:09 — forked from freekrai/boyer-moore.php
Boyer-Moore string match algorithm
<?php
define('ALPHABET_SIZE',1);
function compute_prefix($str,$size,&$result=0)
{
$result = $result[$size + 1];
$q;
$k;
$result[0] = 0;