andalousie 发表于 2014-4-5 21:37:45

KMP算法讲解与代码

本帖最后由 andalousie 于 2014-4-5 21:44 编辑

因为自己感觉字符串这块儿特别薄弱,就学习了KMP算法。参考了小甲鱼的视频以及csdn和一些资料。发表此文,仅表对小甲鱼的佩服和感激。
大家都很明白,KMP的重点在于理解next数组的含义,抄个代码本不难,对吧。所以我的ppt里面主要给出了next数组的生成过程,而搜索匹配子串其实很简单。下面是截图





接着给出代码实现。ppt回复可见。
#include <iostream>
#include <string>

class KMP
{
      std::string pat;
      int    M;
      int * next;
public:
      // create Knuth-Morris-Pratt NFA from pattern
      KMP(const std::string& pattern)
                : pat(pattern), M(pattern.length())
      {
                next = new int;
                int i, j = -1;
                for (i = 0; i < M; i++)
                {
                        if ( i == 0 ) next = -1;
                        else if ( pat != pat ) next = j;
                        else next = next;
                        while ( j >= 0 && pat != pat )
                              j = next;
                        j++;
                }

                for (i = 0; i < M; i++)
                        std::cout << "next[" << i << "] = " << next << std::endl;
      }
      ~KMP() { delete [] next; }

      // return offset of first occurrence of text in pattern (or N if no match)
    // simulate the NFA to find match
    int search(const std::string& text)
      {
      int N = text.length();
      int i, j;
      for (i = 0, j = 0; i < N && j < M; i++) {
            while (j >= 0 && text != pat)
                j = next;
            j++;
      }
      if (j == M) return i - M;
      return N;
    }
};

int main()
{
      std::string pattern = "ababaca";
      KMP kmp(pattern);
      std::string text = "abababaca";
      int offset = kmp.search(text);

      std::cout << text << std::endl;
      for (int i = 0; i < offset; i++)
                std::cout << " ";
      std::cout << pattern << std::endl;
}**** Hidden Message *****
盗用了下小甲鱼课件的背景哈~

1137668129 发表于 2014-4-11 21:41:30

我也在看这个,过来看看

LYF^_^618 发表于 2014-4-19 16:38:56

先看看在说

木耳一道 发表于 2014-4-19 17:09:31

感谢分享,收藏了

2231565074 发表于 2014-4-19 17:17:19

看看学习学习

于禹尔 发表于 2014-4-27 21:09:58

:sad   互惠吧 受教了

于禹尔 发表于 2014-4-27 21:31:56

:sad   互惠吧 受教了

wjc2118 发表于 2014-4-27 21:36:18

谢谢楼主分享

XXX的XXX 发表于 2014-5-1 23:50:48

两包烟的钱,把不了妹买不了田,不如拿来支持小甲鱼推出更多原创教学视频!

dralee 发表于 2014-5-2 00:46:41

支持下……

Beard 发表于 2014-5-3 18:13:01

感谢lz分享。~

Stduy_Student 发表于 2014-5-7 11:53:32

感谢楼主分享,顶贴支持~

章伯魂 发表于 2014-8-12 13:26:47

这东西不错呀,非常感谢楼主分享。。。!

fatherman 发表于 2014-8-12 15:07:00

向楼主学习学习

2014On_The_Way 发表于 2014-8-14 22:53:46

好啊啊{:1_1:}

xuli999 发表于 2014-8-14 23:06:08

这个很好的

时光切手 发表于 2014-8-28 10:18:01

支持

jsqking99 发表于 2014-8-30 22:17:39

感谢楼主无私分享!!!!!!!

郭兴华 发表于 2014-8-31 10:19:45

支持小甲鱼!!支持小甲鱼!!

ゃ莼处狼性ぉ 发表于 2014-8-31 10:59:03

支持楼主
页: [1] 2 3 4 5
查看完整版本: KMP算法讲解与代码