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

搜索资源列表

  1. complersrc

    0下载:
  2. 编译原理课程设计,VC实现源码,可以参考,特别是一些数据结构-compiler theory curriculum design, VC source can be found, especially in some data structure
  3. 所属分类:SCSI/ASPI

    • 发布日期:2008-10-13
    • 文件大小:58567
    • 提供者:张洪涛
  1. test

    0下载:
  2. 用codeblocks编写的用来实现数据结构中的链表建立、排序、合并问题(实现了四个班级成绩的排序)-With codeblocks write used to realize data structure of chain table set up, sort, merger problem (realize the four class performance sort)
  3. 所属分类:Compiler program

    • 发布日期:2017-11-22
    • 文件大小:63930
    • 提供者:刘坤
  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. LinkTable

    0下载:
  2. 数据结构中线性链表,及循环链表的应用,这是对约瑟夫问题的求解。-Linear linked list data structure, and the application of the circulation list,For Joseph problem solving.
  3. 所属分类:Compiler program

    • 发布日期:2017-11-08
    • 文件大小:5224
    • 提供者:李婉婷
  1. non-recursive

    0下载:
  2. 建立文法及其LL(1)分析表表示的数据结构,设计并实现相应的预测分析器,对源程序经词法分析后生成的二元式代码流进行预测分析,如果输入串是文法定义的句子则输出“是”,否则输出“否”。-提示:" s"以后的内容没有被翻译,单次翻译最多1000字 努力翻译中,请稍后… A grammar and LL (1) of the table that the data structure, design and implement the corresponding prediction
  3. 所属分类:Compiler program

    • 发布日期:2017-12-04
    • 文件大小:23165
    • 提供者:杜坤
  1. 8-queen

    0下载:
  2. 8 queen problem in data structure
  3. 所属分类:Compiler program

    • 发布日期:2017-04-11
    • 文件大小:929
    • 提供者:vrunda
  1. pudn

    0下载:
  2. 里面包括开发的编译原理的实验报告及源代码,还有计算机网络的的实验及指导,最后还有一个是数据结构的作业原题。-Which includes the development of experimental compiler theory and source code, as well as computer network experiment and guidance, and finally there is a job original title data structure.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-06
    • 文件大小:1227678
    • 提供者:万飞
  1. mymaze

    0下载:
  2. 经典的栈应用,迷宫游戏,利用String类型对路线进行标记,突出栈这一数据结构特殊的性质。-The classic application stack, maze games, use the String type marked on the route, highlighting the stack data structure of this particular nature.
  3. 所属分类:Compiler program

    • 发布日期:2017-05-26
    • 文件大小:9386078
    • 提供者:
  1. assembler

    0下载:
  2. 该程序使用了I/O流对存有汇编语言文本进行读入以及对操作结果的文本输出;运用了数据结构的栈结构,简化了文本内容的识别;将文本中的一行封装成类对象hang;将系统的一些操作指令通过哈希结构封装在symtab类中;将文本获得的操作指令封装在optab中;自己还另外编写了十进制转十六进制,int类型和对应的字符串进行互转的方法供程序使用。-The program uses the I/O stream of assembly language there and read the text on th
  3. 所属分类:Compiler program

    • 发布日期:2017-04-09
    • 文件大小:1136757
    • 提供者:钟武俊
  1. Cpp1

    0下载:
  2. 基于VC++6.0的c++语言编程利用哈希表数据结构实现对班级学生信息管理-VC++6.0 c++ programming language to achieve the use of hash table class student information management based on data structure
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2477
    • 提供者:陈程
  1. liste

    0下载:
  2. The list data structure allocates and deallocates memory as needed therefore, it does not allocate memory that i s not currently using. Memory is freed when an element is removed the list. Lists are efficient when inserting new elements in the l
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:818
    • 提供者:netko
  1. InputAndOutputOfGrammar

    0下载:
  2. 1、了解文法定义的4个部分: G(Vn, Vt, S, P) Vn 文法的非终结符号集合,在实验中用大写的英文字母表示; Vt 文法的终结符号集合,在实验中用小写的英文字母表示; S 开始符号,在实验中是Vn集合中的一个元素; P 产生式,分左部和右部,左部为非终结符号中的一个,右部为终结符号或非终结符号组成的字符串,如S->ab|c 2、根据文法各个部分的性质,设计一个合理的数据结构用来表示文法, 1)若使用C语言编写,则文法可以设计成结构体形式,结构体中应包
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2067
    • 提供者:忆昔
  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. Source

    0下载:
  2. C++ program to solve polynomials using linked lists data structure.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-12
    • 文件大小:617
    • 提供者:Farhan
  1. CGCompiler-master

    0下载:
  2. 一个编译器(仅词法分析、语法分析、部分语义分析,所以说是前端),拿来分享一下。 整个代码库具有如下功能: 提供编译器所需基础数据结构、计算流程框架类,可供继承使用; 提供基础数据结构的可视化控件; 提供类似YACC的词法分析器、语法分析器自动生成功能; 提供Win form程序,集成和扩展上述功能,方便研究和应用。-A compiler (only lexical analysis, syntax analysis, semantic analysis secti
  3. 所属分类:Compiler program

    • 发布日期:2017-05-05
    • 文件大小:846752
    • 提供者:arjian
  1. lab 1

    0下载:
  2. Data Structure Lab 1
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-29
    • 文件大小:355328
    • 提供者:Haris199666
  1. lab 3

    0下载:
  2. Data Structure Lab 3
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-30
    • 文件大小:16384
    • 提供者:Haris199666
  1. lab 4

    0下载:
  2. Data Structure Lab 4
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-30
    • 文件大小:198656
    • 提供者:Haris199666
  1. lab 5

    0下载:
  2. Data Structure Lab 5
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-29
    • 文件大小:102400
    • 提供者:Haris199666
  1. lab 6

    0下载:
  2. Data Structure Lab 6
  3. 所属分类:编译器/解释器

    • 发布日期:2017-12-30
    • 文件大小:13312
    • 提供者:Haris199666
« 12 »
搜珍网 www.dssz.com