搜索资源列表
BOCH
- 一个用LISP语言编写的语法分析器。使用Bottom-up Chart Parsing算法,程序非常的简单高效,只有二百多行。另外可以自己定义文法和字典。 源代码公开,主要供对语法分析算法和LISP编程感兴趣的人学习使用,也可以使用在自然语言处理的各种实际研究当中。-A language with LISP parser. The use of Bottom-up Chart Parsing algorithm, the procedure very simple and efficient,
Two-fork-tree-operation
- 熟练掌握二叉树的各种遍历算法,并能灵活运用遍历算法实现二叉树的其它操作;-Proficiency in a variety of binary tree traversal algorithm, and other operations of the binary tree traversal algorithms to achieve flexibility in the use of
WinCalc
- programme to calculate different types of algorithms in c++ programming
(first-follow-select)
- 构造LL(1)语法分析程序,任意输入一个文法符号串,并判断它是否为文法的一个句子。程序要求为该文法构造预测分析表,并按照预测分析算法对输入串进行语法分析,判别程序是否符合已知的语法规则,如果不符合(编译出错),则输出错误信息-Construct LL (1) parser, enter an arbitrary string of grammar symbols, and determine if it is a sentence grammar. Procedural requirements
PLS1
- PLS方法的思想早在上个世纪30年代就已经产生,但是在上世纪三十年代至六十年代中期这段时间,PLS方法尚未形成系统、完整的理论与算法。-PLS method of thinking as early as 30 years in the last century has been produced, but in the mid-thirties to six this time, PLS method system, a complete theory and algorithms have
MurmurHash
- MurmurHash算法:高运算性能,低碰撞率,由Austin Appleby创建于2008年,现已应用到Hadoop、libstdc++、nginx、libmemcached等开源系统。-MurmurHash algorithms: high computing performance, low collision rate by Austin Appleby, founded in 2008, has been applied to Hadoop, libstdc++, nginx, lib
LoadDataBase
- For a particularly long time, automatic diagnosis of diabetic retinopathy digital fundus images has been an active research topic in the medical image processing community. The research interest is justified by the excellent potential for new p
postfix-notation
- 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 对应的转化为逆波兰式的语义动作如下: E-> E(1)op E(2) {E.CODE:= E(1).CODE||E(2).CODE||op} E->(E(1)) { E.CODE := E(1).CODE} E->id { E.CODE := id} 2、利用实验5中的算符优先分析算法,结合上面给出的语义动作实现逆波兰式的构造
kmeans
- Algorithm k-means is a simple iterative clustering algorithm, which divides the set of data to a user-specified number of clusters, k. The algorithm is simple to implement and run relatively fast, easily adaptable and common in practice. It is his
ABCalgoritmo
- ABC Algorithm in c, Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis Karaboga in 2005, motivated by the intelligent behavior of honey bees.