搜索资源列表
KMP008
- 串的模式匹配的朴素算法是O(N^2)的, 可以 利用KMP(由D.E.Knuth, J.H.Morris, V.R.Pratt提出)算法改进至线性的算法. KMP算法与朴素算法的不同在于:处理"失配"情况. 不同于将指针完全回溯, KMP算法先根据已经部分匹配的信息, 将匹配的指针跳过不必匹配的位置.-Series of simple pattern matching algorithm is O (N ^ 2), and can make use of KMP (from DEKnuth,
TheArtofComputerProgrammingVolume2
- Knuth不僅僅是傑出的programmer,同時也是世界聞名的數學家和演算法的專家。他的經典巨著The Art of Computer Programming裡頭寫的是他畢生研究演算法和程式設計的精華-Knuth is not only an outstanding programmer, but also world-renowned mathematicians and experts algorithm. His classic masterpiece, The Art of Compu
TheArtofComputerProgrammingVolume4
- Knuth不僅僅是傑出的programmer,同時也是世界聞名的數學家和演算法的專家。他的經典巨著The Art of Computer Programming裡頭寫的是他畢生研究演算法和程式設計的精華-Knuth is not only an outstanding programmer, but also world-renowned mathematicians and experts algorithm. His classic masterpiece, The Art of Compu
buddy
- Algorithm One possible version of the buddy allocation algorithm was described in detail by Donald Knuth in The Art of Computer Programming. This is a complicated process.-Algorithm One possible version of the buddy allocation algorithm was descr
p261-knuth
- Shannon1948的经典之作难得的作品,希望能喜欢-Shannon1948 of the classic works of rare, hoping to enjoy
DancingLinks
- Donald E.Knuth dancing links ppt
Pattern.Recognition
- 本书介绍广泛应用的人工智能技术——模式识别及其应用的最新进展,收集了世界一流的模式识别、人工智能和生物特征识别技术领域专家编写的31章内容,涵盖模式识别与机器智能、计算机视觉与图像处理、人脸识别与取证、生物特征身份验证等多方面结合的研究。其应用跨越多个领域,从工程、科学研究和实验,到生物医学和医学诊断,再到身份认证和国土安全。此外,《本书还介绍了人类行为的计算机建模和仿真。-Insights into a pattern-based method of trading that can inc
programming-to-the-professor
- 这是关于《计算机程序设计艺术》教授Don Knuth先生的一个稿,对老师学生都挺好的,但可能比较深度。-the author who write the book "the art of programming"
KMP-string-matching-algorithm
- 字符串匹配是计算机的基本任务之一。 举例来说,有一个字符串”BBC ABCDAB ABCDABCDABDE”,我想知道,里面是否包含另一个字符串”ABCDABD”? 许多算法可以完成这个任务,Knuth-Morris-Pratt算法(简称KMP)是最常用的之一。-String matching is one of the basic tasks of the computer. For instance, there is a string "BBC ABCDAB ABCDABCDA
MK.Foundations.of.Multidimensional.and.Metric.Dat
- Hanan Samet, the world-reknown authority on multi-dimensional data, has written a comprehensive and stunningly beautiful book. The illustrations that appear in the margins of almost every page serve to wonderfully augment the text and convey the esse
StringMatching
- String Matching Algorithms,Comparisons,Naive string matching algorithm,Rabin-Karp Algorithm, Knuth-Morris-Pratt Algorithm