搜索资源列表
MIXBuilder
- MIX的模拟器: MIX是《计算机程序设计艺术》(TAOCP)的作者高德纳(Donald.E.Knuth)在TAOCP中描述算法时使用的一种假想的机器,所以书中的汇编代码无法在任何一个机器上运行,附件中的程序可以让以MIXAL汇编语言写成的算法在Windows平台上汇编并且可以单步跟踪运行。详细情况参看其中的MIXBuilder.doc文件。 -MIX simulator : MIX "Art of Computer Programming" (TAOCP), the aut
dancinglink
- This a program to implement the so-called \"dancing link\" which is introduced in Knuth s paper. This is really a super acrobatic and I am sure that not many programmers can understand the algorithms. -This is a program to implement the so-c
ConcreteMathematic
- 算法大师Donald E.Knuth的经典著作《Concrete Mathematics具体数学》,算法学习的基础-algorithm master Donald E. Knuth classics "Concrete Mathe Matics specific math. "the foundation of learning algorithm
改良快速模式匹配
- Knuth的快速模式匹配算法改良,可以匹配含通配符?和*的标准串-the rapid improvement of pattern matching algorithm can match with wildcards? * And the standard Series
strkmp
- 微软面试题:给出一个函数来输出一个字符串的所有排列。 简单的回溯就可以实现了。当然排列的产生也有很多种算法,去看看组合数学,还有逆序生成排列和一些不需要递归生成排列的方法。印象中Knuth的<TAOCP>第一卷里面深入讲了排列的生成。这些算法的理解需要一定的数学功底,也需要一定的灵感,有兴趣最好看看。
Addison.Wesley.Donald.E.Knuth.The.Art.of.Computer.
- 计算机科学的圣经 Knuth的经典之作——第2卷对半数值算法领域做了全面介绍,分“随机数”和“算术”两章。本卷总结了主要算法范例及这些算法的基本理论,广泛剖析了计算机程序设计与数值分析间的相互联系。第3版中特别值得注意的是Knuth对随机数生成程序的重新处理和对形式幂级数计算的讨论。
Addison.Wesley.Donald.E.Knuth.The.Art.of.Computer.
- 计算机科学的圣经 Knuth的经典之作 卷3为分拣和搜索,这是本书的第1个修订版,它是对计算机分拣和搜索的一流技术的最全面的研究,它扩展了卷1中数据结构的处理方法,将大小数据库以及内存和外部存储都包含在内。本书包括对计算机方法仔细检查的选择方案,和其效率的大量分析。本书该版的独特之处在于优化了的分拣,以及对通用散列法和排列法的新的理论论述。
220264123326_LaTeX
- LaTex排版工具,Knuth的杰作,开源软件。编写程序来排版,上手快。用LaTex排版各种专业图谱!效果比word好多了!多媒体期末论文!仅供参考!
donald e. knuth - the art of computer programming
- 卷1为基础运算法则,该书以基本的编程概念和技术为开始,然后讲述信息结构--计算机内信息的表示法,数据元素间的结构关系以及处理它们的有效方法。主要应用于模拟、数字方法、符号计算、软件和系统设计。许多简单和重要的运算法则和技术已添加到前一版本中,精确的初步计算部分已经修改,以适应当前趋势。 -a volume-based algorithms, the book of basic programming concepts and techniques for beginning and then i
donald e. knuth - the art of computer programming
- 卷3为分拣和搜索,这是本书的第1个修订版,它是对计算机分拣和搜索的一流技术的最全面的研究,它扩展了卷1中数据结构的处理方法,将大小数据库以及内存和外部存储都包含在内。本书包括对计算机方法仔细检查的选择方案,和其效率的大量分析。本书该版的独特之处在于优化了的分拣,以及对通用散列法和排列法的新的理论论述。-Volume 3 for sorting and searching, this is the book of a revised edition, it is sorted on the com
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
knuth
- 大牛Knuth写的线性规划的C源代码,另附说明文档-Knuth s linear programming C source code, documentation attached
knuth.f90
- Yet another random number generator this one is based upon an algorithm by Donald Knuth -Yet another random number generator this one is based upon an algorithm by Donald Knuth
DancingLinks
- 在计算机科学,舞蹈链接,也被称为的DLx ,是技术建议唐纳德克努特有效地执行其算法十算法X是递归,随意性,深度优先,回溯算法,认为所有的解决方案的确切覆盖问题。一些较为著名的确切涵盖的问题包括瓦工,n皇后问题,数独。-In computer science, Dancing Links, also known as DLX, is the technique suggested by Donald Knuth to efficiently implement his Algorithm X. A
KMP
- Knuth-Morris-Prath Pattern Matching algorithm in Matlab
dancing_links_Knuth
- 目前最快的数独求解程序 - 实现了Knuth的Dancing Links+Algorithm X算法-Knuth,Dancing Links+Algorithm X algorithm
knuth-the-art-of-computer-programming-volume3
- knuth的计算机编程艺术第三卷,算法是个深奥的-the art of computer programming
vckmp
- KMP 算法是由Knuth,Morris和Pratt等人共同提出的,所以成为Knuth-Morris-Pratt算法,简称KMP算法。KMP算法是字符串模式匹配中的经典算法。和BF算法相比,KMP算法的不同点是匹配过程中,主串的位置指针不会回溯,这样的结果使得算法时间复杂度只为O(n+m)。 采用VC++开发,实现KMP字符串匹配算法-KMP algorithm by Knuth, Morris and Pratt, who co-sponsored, so as Knuth-Morris-
stroki_algoritm_kmp
- The KMP(Knuth Morris Pratt) Algorithm