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

搜索资源列表

  1. STP

    0下载:
  2. 通过查阅生成树算法和并行算法的相关文献,总结出生成树的算法思想,然后结合本论文得到其算法的基本思想。-Through access to spanning tree algorithm and parallel algorithms related literature, summed up the ideological spanning tree algorithm, and then combine this paper are the basic idea of the algorith
  3. 所属分类:MPI

    • 发布日期:2017-03-31
    • 文件大小:94689
    • 提供者:密码
  1. ll(1)fenxi

    0下载:
  2. 本程序是采用的LL(1)方法进行的语法分析,而LL(1)的分析方法是属于自上而下的方法。 自上而下分析的基本思想是:对任意输入串,试图用一切可能的方法,从文法开始符号(根结点)出发,自上而下为输入串建立一棵语法树。从推导的角度看,它是从文法的开始符号出发,反复使用各种产生式,寻找与输入串匹配的推导。 在输入之前必须要进行该文法是不是LL(1)文法的判断,然后再构造相应的LL(1)分析表来用预测分析方法进行语法分析,依据下面的文法及分析表来设计程序实现预测分析的分析过程。
  3. 所属分类:Compiler program

    • 发布日期:2017-03-26
    • 文件大小:1558
    • 提供者:WM
  1. diguixiajiang

    0下载:
  2. 递归下降的基本思想: 为每一个非终结符构造一个子程序,每一个子程序的过程体中按该产生式的候选项分情况展开,遇到终结符直接匹配,而遇到非终结符就调用相应非终结符的子程序。该分析从调用文法开始符号的子程序开始,直到所有非终结符都展开为终结符并得到匹配为止。若分析过程中达到这一步则表明分析成功,否则表明输入中有语法错误。递归下降分析对文法的限制是不能有公共左因子和左递归。由于文法是递归定义的,因此子程序也是递归的,被称为递归下降子程序。 -The basic idea of recursiv
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:1456
    • 提供者:WM
  1. Text-To-Sp1508061252002

    0下载:
  2. This program reads German text. It sounds like a robotic voice. You can load a file or simply select or type a word to read (the application s idea can be adapted to read English as well).
  3. 所属分类:Delphi VCL

    • 发布日期:2017-03-28
    • 文件大小:111156
    • 提供者:ipsd
  1. stockxpertcom_id735374_eps_db65bb1f6d7c7b647ca83c

    0下载:
  2. This is a zip file and I have no idea what is it
  3. 所属分类:Delphi VCL

    • 发布日期:2017-05-04
    • 文件大小:1235511
    • 提供者:Hao
  1. LZ78encodinganddecoding

    0下载:
  2. LZ78的编码思想是不断地从字符流中提取新的“缀-符串(String)”(通俗地理解为新“词条”),然后用“代号”也就是码字(Code word)表示这个“词条”。这样一来,对字符流的编码就变成了用码字(Code word)去替换字符流,生成码字流,从而达到压缩数据的目的。 -LZ78 encoding idea is to continually extracted from the character stream the new " infix- character string
  3. 所属分类:Editor

    • 发布日期:2017-04-05
    • 文件大小:15545
    • 提供者:jianli Wang
  1. Irony

    0下载:
  2. this a new idea for generating syntax parsing code,it can be used instead of lex and yacc toolz-this is a new idea for generating syntax parsing code,it can be used instead of lex and yacc toolz
  3. 所属分类:Compiler program

    • 发布日期:2017-03-30
    • 文件大小:279352
    • 提供者:hamada
  1. a

    0下载:
  2. 用有限元法求解微分方程,虽然有时方程不一样,但是思路是一样的。-The finite element method for solving differential equations, though sometimes not the same equation, but the idea is the same.
  3. 所属分类:source in ebook

    • 发布日期:2017-04-02
    • 文件大小:879
    • 提供者:zack
  1. OPT

    0下载:
  2. 置换策略:也称淘汰策略,涉及的是当内存可用空间不能装下需要调入的信息时,决定调出已占用内存某个区域的那一块信息以便腾出空间。 OPT该算法的基本思想是:发生缺页时,有些页面在内存中,其中有一页将很快被访问(包含紧接着的下一条指令的那页),而其他页则可能要到10、100、或1000条指令之后才被访问,每个页都可以用在该页面首次被访问前所要执行的指令数进行标记 -Replacement Policy: also known as the phase-out strategy, involvi
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:171887
    • 提供者:曾华
  1. ServerProtSocket

    0下载:
  2. Components derived from TServerSocket and TClientSocket to implement a particular protocol. Function is based in defining a serie of valid protocol messages (TStrings) and responding to protocol events (messages of any of those valid types). The id
  3. 所属分类:Delphi VCL

    • 发布日期:2017-03-27
    • 文件大小:2819
    • 提供者:David
  1. Lexer

    0下载:
  2. 自己写的词法分析器,是按照导师的想法写的,可以作为信息院的毕业设计。-Write your own lexical analyzer is written in accordance with the idea of mentors can be used as information homes graduation.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:3537
    • 提供者:weijian
  1. RecursiveDescentParser

    0下载:
  2. 一种自顶向下的语法分析方法的思想,根据文法的产生式规则绘制相应的转换图,并能对之进行简化,继而构造出相应的递归下降分析器。-A kind of top-down method of syntax analysis of the idea, according to the grammar production rules mapping the corresponding conversion map and the simplification can then construct the
  3. 所属分类:Compiler program

    • 发布日期:2017-04-16
    • 文件大小:72503
    • 提供者:zhangxueli
  1. HighTest

    0下载:
  2. java私塾高级理念部分的源代码,很好的-Some idea of private school senior java source code, well
  3. 所属分类:source in ebook

    • 发布日期:2017-04-17
    • 文件大小:29458
    • 提供者:李注
  1. kang

    0下载:
  2. 2、 从键盘输入两个个位数,相加,显示其和。 思路: 分别输入被加数和加数,得到相应的ASCII码,分别再减去30H,得到其真实的值,进行相加,得到的结果判断是否大于10,大于10则除以10,得到商(十位)和余数()(个位),再分别显示;如果小于10则直接显示。 -2, the two digits from the keyboard, add, show its and. Idea: each input summand and additives, the correspond
  3. 所属分类:assembly language

    • 发布日期:2017-04-03
    • 文件大小:630
    • 提供者:康森林
  1. isopatch

    0下载:
  2. isopatch - this a small part of a larger project, the idea is to build linux livecd iso image and inject some data after burning (e.g. configuration - IP, window manager, etx), your client can inject new configuration by his own, this the injection t
  3. 所属分类:Disk Tools

    • 发布日期:2017-03-29
    • 文件大小:781
    • 提供者:pkoper
  1. cache

    0下载:
  2. 实现cache替换算法,思路是改进的LRU和LFU算法,在一定程度上提高了原来的LRU算法的命中率。-Achieve cache replacement algorithm, idea is to improve the LRU and LFU algorithms, to a certain extent, the original LRU algorithm to improve the hit rate.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-24
    • 文件大小:3761
    • 提供者:闫雪飞
  1. Tutorial.pdf

    0下载:
  2. the programming on Assembler is a fundamental part of the course of Ar- or chitecture ST-039. The idea of this tutorial is that it is sufficiently easy and f to explicit as to be without supervision n, n as well as make or e ı n I
  3. 所属分类:assembly language

    • 发布日期:2017-03-29
    • 文件大小:168124
    • 提供者:darick
  1. lianghuashilu

    0下载:
  2. 量化思路证券技术指标编写技法,主要是为想自己写技术指标或改技术指标的人上一本书。-Quantitative idea of writing techniques Securities technical indicators, mainly for those who want to write their own technical indicators technical indicators, or to change the people on a book.
  3. 所属分类:source in ebook

    • 发布日期:2017-06-09
    • 文件大小:15873402
    • 提供者:gao
  1. PrTest

    0下载:
  2. 可动态调整打印项目的支票打印程序,给大家在打印方面提供一条思路-Dynamically adjust the check printing program to print the project, to provide you an idea of ​ ​ the print
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-05
    • 文件大小:564919
    • 提供者:张三
  1. fenqucunchuguano

    0下载:
  2. 应用首次适应算法实现动态分区存储管理。主要思想是通过图形界面来获得用户输入信息。-Applications for the first time to adapt to the dynamic partitioning algorithm storage management. The main idea is to get through the graphical interface, user input information.
  3. 所属分类:Disk Tools

    • 发布日期:2017-04-05
    • 文件大小:163315
    • 提供者:沈陆
« 1 2 3 45 6 7 8 9 »
搜珍网 www.dssz.com