CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 SCSI/ASPI 搜索资源 - 算法

搜索资源列表

  1. math_exp

    0下载:
  2. 数学表达式解析程序C++源码 支持 + - * / ^ () 等主要运算符 采样递归算法, 供学习参考,自由版权 samuel_ni@yahoo.com -math expression parser C++ source code support+- ^ () operators use of recursive algorithm,copyright free
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:3073
    • 提供者:samuelni
  1. (first-follow-select)

    0下载:
  2. 构造LL(1)语法分析程序,任意输入一个文法符号串,并判断它是否为文法的一个句子。程序要求为该文法构造预测分析表,并按照预测分析算法对输入串进行语法分析,判别程序是否符合已知的语法规则,如果不符合(编译出错),则输出错误信息-Construct LL (1) parser, enter an arbitrary string of grammar symbols, and determine if it is a sentence grammar. Procedural requirements
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:203680
    • 提供者:张丽
  1. ldpc-decoding

    0下载:
  2. LDPC码的各种译码算法,包括decodeProbDomain,decodeLogDomain, decodeLLR_BP,normalized BP,offset BP,MBP Layered decoding(LBP),normalized LBP, offset LBP-Kinds of LDPC decoding algorithms ,including decodeProbDomain,decodeLogDomain, decodeLLR_BP,normalized
  3. 所属分类:Compiler program

    • 发布日期:2017-04-26
    • 文件大小:14272
    • 提供者:刘珊珊
  1. huafen

    0下载:
  2. 能够实现编译原理的中间代码块的简单的基本块的划分算法-Partitioning algorithm enables compiler theory of simple basic blocks of intermediate code blocks
  3. 所属分类:Compiler program

    • 发布日期:2017-04-06
    • 文件大小:267334
    • 提供者:梁巧媛
  1. CG

    0下载:
  2. 共轭梯度算法,非常经典,大家相互交流,如果大家有更好的资源也上传啊,非常感谢-Conjugate gradient algorithm, very classic, everyone to communicate,
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:862
    • 提供者:大爷
  1. liziqun

    0下载:
  2. 粒子群优化是一种新兴的基于群体智能的启发式全局搜索算法,粒子群优化算法通过粒子间的竞争和协作以实现在复杂搜索空间中寻找全局最优点。-Particle swarm optimization is a new global search heuristic algorithm based on swarm intelligence, particle swarm optimization algorithm by particle competition and collaboration to a
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:810
    • 提供者:Deng you yan
  1. PLS1

    0下载:
  2. 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
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:981
    • 提供者:yang
  1. sort

    0下载:
  2. 使用了4种算法了排序。分别是C++、python、ruby、java-use to sort ,the program language include C++、python、ruby、java
  3. 所属分类:Compiler program

    • 发布日期:2017-05-24
    • 文件大小:7803180
    • 提供者:tanghong
  1. _FuzzyPID

    0下载:
  2. MATLAB算法 自己设计的 希望能帮助你 模糊PID-MATLAB algorithm design their own hope to help you fuzzy PID
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:34389
    • 提供者:嘿嘿
  1. ga

    0下载:
  2. 基因算法多目标优化,一种新型的优化算法,从多点出发进行优化,具有传统优化算法不具备的优势,优化效果显著-Genetic Algorithm_multi
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:2600
    • 提供者:Zeus
  1. Shortest_way

    0下载:
  2. 路径搜索,最短路径问题,A算法,容易实现,c++程序-Search path, the shortest path problem, A algorithm, easy to implement, c++ program
  3. 所属分类:Compiler program

    • 发布日期:2017-05-18
    • 文件大小:4873783
    • 提供者:易巷尘
  1. best-way

    0下载:
  2. 路径搜索,最短路径问题,A算法,容易实现,c++程序-Search path, the shortest path problem, A algorithm, easy to implement, c++ program
  3. 所属分类:Compiler program

    • 发布日期:2017-05-18
    • 文件大小:4873383
    • 提供者:易巷尘
  1. MurmurHash

    0下载:
  2. 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
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:1341
    • 提供者:云彩
  1. slr

    0下载:
  2. SLR(1)分析法是一种简单而使用的方法,其造表算法简单,状态数目少,且大多数程序设计语言都可以用SLR(1)文法来定义。所以SLR(1)分析法是个很使用的分析程序。在编写过程中老师的对我帮助很大,在这里好十分感谢老师王治国。软件设计是需要一整套程序,一整套基础理论才能完成的,以后要学习的还会更多了-just soso
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:15447
    • 提供者:付大帅
  1. QPOS

    1下载:
  2. QPSO量子粒子群算法,改进,防止陷入局部极值,防止早熟-Impoved QPSO
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:705
    • 提供者:limin
  1. GrammarPriority

    0下载:
  2. 编译原理作业,用python写的算符优先算法,实现了语法分析算符优先-Written python compiler theory with the operator priority algorithm
  3. 所属分类:Compiler program

    • 发布日期:2017-04-30
    • 文件大小:12089
    • 提供者:简单就好
  1. operator-precedence-parser

    0下载:
  2. 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 可以构造算符优先表如下: + * ( ) i + * ( ) i 2、计算机中表示上述优先关系,优先关系的机内存放方式有两种1)直接存放,2)为优先关系建立优先函数,这里由学生自己选择一种方式; 3、给出算符优先分析算法如下: k:=1 S[k]:=‘#’ REP
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:1803
    • 提供者:忆昔
  1. postfix-notation

    0下载:
  2. 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中的算符优先分析算法,结合上面给出的语义动作实现逆波兰式的构造
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:1331
    • 提供者:忆昔
  1. tiny_dmc

    0下载:
  2. 花了很多时间打造的最小c/c++编译器!编译器是免费的digitalmars c/c++,IDE用的是单文件版scite(sc178.exe),编译环境及优化开关已设置好。解压后约8M。适合算法编程及c/c++语言学习。-tiny c/c++ development environment(digitalmars c/c+++ scite(singular file, version 1.78)),enjoy it!
  3. 所属分类:Compiler program

    • 发布日期:2017-05-14
    • 文件大小:3174226
    • 提供者:yqg
  1. zf_mmse

    0下载:
  2. 多用户MIMOzf_mmse预编码算法的性能分析-Performance Analysis of Multi-user pre-coding algorithm MIMOzf_mmse
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:1386
    • 提供者:lily
« 1 2 3 45 »
搜珍网 www.dssz.com