惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
P
Proofpoint News Feed
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
F
Fortinet All Blogs
C
Check Point Blog
博客园_首页
I
InfoQ
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Engineering at Meta
Engineering at Meta
美团技术团队
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research

博客园 - 飘渺峰

一致性Hash算法 .net Parallel并行使用注意事项 析构函数和Dispose方法的区别 查看SQLServer的最大连接数 Hash算法-CityHash算法 Hash算法 Sunday算法--C#版 BoyerMoore(BM)算法--C# HostFileChangeMonitor [转]软件项目管理总体流程设计 全排列和组合算法 生活 负载均衡算法--C#版 结束进程的方法forceStopPackage 【转】OAUTH协议简介 SQL Server FOR XML PATH 语句的应用 nlog轻量级日志组件 反射加载程序集的几个方法的区别 windows 下TCP最大连接数
KMP算法--C#版
飘渺峰 · 2013-12-10 · via 博客园 - 飘渺峰
        static void BuildTable(string subString, ref int[] next)
        {
            if (string.IsNullOrWhiteSpace(subString)) return;

            int j = 0, k = -1;
            next[0] = -1;
            while (j < subString.Length - 1)
            {
                if (-1 == k || subString[j] == subString[k])
                {
                    j++;
                    k++;
                    next[j] = k;
                }
                else
                {
                    k = next[k];
                }
            }
        }

        /// <summary>
        /// 查找算法
        /// </summary>
        /// <param name="source">要搜索的字符串</param>
        /// <param name="subString">子串</param>
        /// <returns>子串在source字符串中的开始位置</returns>
        static int KmpSearch(string source, string subString)
        {
            if (string.IsNullOrWhiteSpace(source) || string.IsNullOrWhiteSpace(subString))
                return -1;
            var next = new int[subString.Length];
            for (int k = 0; k < next.Length; k++)
            {
                next[k] = -1;
            }
            int i = 0, j = 0,sLen = subString.Length;

            BuildTable(subString, ref next);

            while (i < sLen)
            {
                if (j == -1 || source[i] == subString[j])
                {
                    i++;
                    j++;
                }
                else
                {
                    j = next[j];
                }

                if (j == sLen)
                {
                    return i - sLen;
                }
            }
            return -1;
        }

使用

            string source = "我是中和敏式的服务二是到覅维尔维尔34山东富翁234斯蒂芬234234式的服务二";
            string subString = "山东富翁";

            int a = KmpSearch(source, subString);

            Console.WriteLine(a);

posted @ 2013-12-10 14:40  飘渺峰  阅读(1362)  评论()    收藏  举报