小鬼之家

流浪,游走于文明与原始之间. 关注底层技术,实现美好生活。

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

随笔分类 -  算法

摘要:因为在做大文件上传的分析中需要用到一段字符串的匹配算法,所以重新学习了一次KMP算法. private int[] GetNextVal(string t) { int j = 0, k = -1; int[] nextVal = new int[t.Length]; nextVal[0... 阅读全文
posted @ 2008-06-28 23:00 黄尚 阅读(373) 评论(0) 推荐(0)

摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->char[] templateText = txt.ToCharArray(); //ITemplate it = new CleanTemplate(); L... 阅读全文
posted @ 2007-05-29 01:31 黄尚 阅读(387) 评论(0) 推荐(0)