• 技术文章 >后端开发 >php教程

    php 兑现KMP算法

    2016-06-13 10:49:28原创530
    php 实现KMP算法
    /**
    * KMP算法的PHP实现
    *
    * @author zhaojiangwei 2011/10/22 10:28
    */

    class KMP{
    private $next = NULL; //模式串T的next数组
    private $t = NULL; //模式串
    private $str = NULL; //主串

    public function KMP($str){
    $this->str = str_split($str);
    $this->next = array();
    }

    //返回主串的长度
    public function getStrCount(){
    return count($this->str);
    }

    //返回结果
    public function getStrPos($substr){
    $substr = str_split($substr);
    $this->getNext($substr);
    $strCount = $this->getStrCount();
    $substrCount = count($substr);
    $subIndex = 0;//子串的起始比较位置
    $strIndex = 0;//主串目前的比较到的位置

    while($subIndex < $substrCount && ($strCount - $strIndex) >= ($substrCount - $subIndex)){
    if($subIndex == -1 || $this->str[$strIndex] == $substr[$subIndex]){
    $subIndex ++;
    $strIndex ++;
    }else{
    $subIndex = $this->next[$subIndex];
    }
    }

    if($subIndex == $substrCount){
    return $strIndex - $substrCount;
    }else{
    return false;
    }
    }

    //求模式串的NEXT数组
    public function getNext($t){
    if(!is_array($t)){
    $t = str_split($t);
    }

    $this->next[0] = -1;
    $count = count($t);

    $i = 0;
    $j = -1;
    while($i < $count){
    if($j == -1 || $t[$i] == $t[j]){
    $j ++;
    $i ++;

    if($t[$i] == $t[$j]){
    $this->next[$i] = $this->next[$j];
    }else{
    $this->next[$i] = $j;
    }
    }else{
    $j = $this->next[$j];
    }
    }

    return $this->next;
    }

    }

    php入门到就业线上直播课:查看学习

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

    前端(VUE)零基础到就业课程:点击学习

    清晰的学习路线+老师随时辅导答疑

    自己动手写 PHP MVC 框架:点击学习

    快速了解MVC架构、了解框架底层运行原理

    上一篇:php基础学习- 一些废弃的用法封锁提高性能 下一篇:自己动手写 PHP MVC 框架(40节精讲/巨细/新人进阶必看)

    相关文章推荐

    • ❤️‍🔥共22门课程,总价3725元,会员免费学• ❤️‍🔥接口自动化测试不想写代码?• 你知道如何用PHP实现多进程吗• PHP与MySQL连接的方法总结• 工具包分享:PHP实现滑块验证图片• 求大神解答!ajax处理php返回的xml文档的问题• sql 当查询不到记录时返回的是什么
    1/1

    PHP中文网