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

搜索资源列表

  1. Syntax_CMM

    0下载:
  2. 语法分析,CMM语言,生成语法树。但是语法树的缩进不完美。-Syntax analysis, CMM language, generative grammar tree. Syntax tree indentation but not perfect.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:66830
    • 提供者:zhang kj
  1. minic

    0下载:
  2. 输入简单的c语言程序,再通过编译器进行编译,可以得到编译的结果。与c语言的功能相近只是范围较小。还可以生成语法分析树,来看中间是怎么进行编译的。-Enter a simple c language program, and then compiled by the compiler, the results can be compiled. And c function of language is similar to a smaller range. Parse tree can also
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:9616
    • 提供者:小缪子
  1. tiny

    1下载:
  2. 这是一个语法分析实验,输入tiny语言就可以输出语法树-This is a parsing experiment, enter the tiny language can output syntax tree
  3. 所属分类:Compiler program

    • 发布日期:2016-06-10
    • 文件大小:2608128
    • 提供者:杨震
  1. Element

    0下载:
  2. 标记语言的简单解释器算法实现,实现一些简单的二叉树-A simple markup language interpreter algorithm, to achieve some simple binary tree
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:14812
    • 提供者:周佳栋
  1. yufafenxi

    0下载:
  2. 利用递归下降分析程序实现对语法的分析,并输出语法树-Recursive descent parser used to achieve the analysis of grammar and syntax tree output
  3. 所属分类:Compiler program

    • 发布日期:2017-03-31
    • 文件大小:1585
    • 提供者:xuchang
  1. antlr-2_7_0

    0下载:
  2. Java写的词法/语法分析器。可生成JAVA语言或者是C++的词法和语法分析器。并可产生语法分析树和对该树进行遍历 -Syntactic and phrase parser in JAVA which can produce JAVA or C
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:1291985
    • 提供者:站长
  1. scaner

    0下载:
  2. 生成类汇编代码的编译器,输入c语言,输出类汇编代码,中间有语法分析树生成-scaner
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:5878
    • 提供者:liumao
  1. compilerWithJava.tar

    0下载:
  2. 用java实现的编译器. 包括语法分析,词法分析,生成目标代码等,代码很简单,本人已经测试过,很完美.-this is the lightweight java compiler, it contains syntactical analysis,lexer analysis and the target generate. the codes is so simply,i works so perfect...i think you can do it..
  3. 所属分类:Compiler program

    • 发布日期:2017-04-02
    • 文件大小:20994
    • 提供者:wangshujing
  1. Huffman

    0下载:
  2. 用c语言实现哈夫曼树的编码与解码 编译器为c-fr-Encoding and decoding of the Huffman tree using c language Compiler for c-free
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:17196
    • 提供者:倪佳华
  1. TinyC

    0下载:
  2. 编译原理课设,TinyC,简化的C语言编译器,不能支持比较高级的C程序,可以生成汇编和语法树-Principle-based compiler class, TinyC, to simplify the C language compiler, can not support the more advanced C procedures, can generate the compilation and syntax tree
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:418532
    • 提供者:P.Linux
  1. tree-three-order

    0下载:
  2. 本代码用队列的方式根据树的前序和中序生成树-create tree
  3. 所属分类:Compiler program

    • 发布日期:2017-11-30
    • 文件大小:1747
    • 提供者:之乎者也
  1. text2

    0下载:
  2. 实现了用树建立数值表达式,并求其值,随便输出它的广义表、前缀表达式和后缀表达式-To realize the tree is to develop a numerical expression, and for its value, literally output its generalized list, prefix and postfix expression expression
  3. 所属分类:Compiler program

    • 发布日期:2017-11-22
    • 文件大小:351460
    • 提供者:刘坤
  1. Two-fork-tree-operation

    0下载:
  2.   熟练掌握二叉树的各种遍历算法,并能灵活运用遍历算法实现二叉树的其它操作;-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
  3. 所属分类:Compiler program

    • 发布日期:2017-11-14
    • 文件大小:16498
    • 提供者:李雨
  1. grammer

    0下载:
  2. 用c语言实现的编译原理课本中的语法分析部分,可以完全正确的分析课本后的c-minus代码,并且可以建立分析树-Syntax analysis part c language compiler theory textbooks, c-minus after the code can be completely correct analysis textbooks, and can create a parse tree
  3. 所属分类:Compiler program

    • 发布日期:2017-11-20
    • 文件大小:914444
    • 提供者:liuming
  1. lab2

    0下载:
  2. 实验二:TINY扩充语言的语法分析 扩充的语法规则有:实现 while、do while、for语句和求余计算式子,具体文法规则自行构造。 可参考:P97及P136的文法规则。 (1) While-stmt --> while exp do stmt-sequence endwhile (2) Dowhile-stmt-->do stmt-sequence while exp (3) for-stmt-->for identifier:=
  3. 所属分类:Compiler program

    • 发布日期:2016-01-25
    • 文件大小:314368
    • 提供者:liangchuqi
  1. Huffman-coding-and-decoding

    0下载:
  2. 在从键盘上输入字符时,只要是键盘上的字符任何字符都能接受,并能统计出输入的一串字符串中各个字符出现的次数,作为构建哈夫曼树时的各叶子结点的权值。 本程序同时具有译码功能 -Character input from the keyboard, as long as any of the characters in the character on the keyboard can be accepted, and the statistics of the number of occurr
  3. 所属分类:Compiler program

    • 发布日期:2017-11-13
    • 文件大小:6118
    • 提供者:mary
  1. compile-duration-function3

    0下载:
  2. 编译器功能3主要是对按照语法分析好的输入数据进行解释,列出树装结构。-The compiler features 3 good input data in accordance with the syntax analysis, interpretation, lists the structure of the tree installed.
  3. 所属分类:Compiler program

    • 发布日期:2017-11-23
    • 文件大小:913563
    • 提供者:beauty
  1. Tree

    0下载:
  2. 有关数据结构中树的一些C代码,如何建立二叉树,如何进行霍夫曼编码。-Some C code about data structure tree, how to create a binary tree, how to Huffman coding.
  3. 所属分类:Compiler program

    • 发布日期:2017-11-08
    • 文件大小:651975
    • 提供者:郭强
  1. compile

    0下载:
  2. 对tiny语义分析器的阅读和分析,理解符号表的定义(栏目设置)与基于抽象语法树的类型检查/推论的实现方法(树遍历)。完成C-语言的符号表的定义设计。规划类型检查/推论的实现方法。实现一种语言的语义分析器-Type checking/inference realization tiny semantic analyzer reading and analysis, to understand the definition of the symbol table (part set) based o
  3. 所属分类:Compiler program

    • 发布日期:2017-11-20
    • 文件大小:226883
    • 提供者:时雨
  1. bintree

    0下载:
  2. 关于二叉树的插入,先序遍历,后序遍历,中序遍历,叶子节点个数,树的深度,路径查找。-Binary tree insertion, preorder, postorder traversal, preorder, the number of leaf nodes, the depth of the tree, the path to find.
  3. 所属分类:Compiler program

    • 发布日期:2017-12-07
    • 文件大小:1939
    • 提供者:刘博
« 12 »
搜珍网 www.dssz.com