搜索资源列表
code_analyze
- c++编写,解析指定目录下的.c/.h文件,能够获取c文件的基本元素,如宏定义,头文件包含,函数声明,函数定义,函数调用等,并实现了简单依赖关系查找-c++ write, parse .c/.h files in the specified directory, have access to the basic elements of the c file, such as macro definitions, header file contains function declarations
lab1-2
- 利用指针对两个列表的合并,在合并过程中删除相同的元素。-The use of means for the merger of the two lists, the same elements removed during the merge process,
yufa
- 语法分析程序的输入文件为语法分析产生的token串,并在文件最后一列加上了一个#号,代表语法归约结束,程序采用的是递归子程序的方法,如果归约成功会输出Success,如果归约失败,会返回归约到token串的哪个元素出现错误,已经相应的未归约成功的文法产生式是哪条-Parser to parse the input file generated token string, and the last one in the file plus a# sign, on behalf of the end
Sum
- 计算数组元素之和,利用三种不同的方法处理数组边界。-Calculating the sum of the array elements, using three different approaches array bounds.
link
- 运用析构,可实现在指定元素前插入特定元素,或者删除多个相同元素-Use destructors, insert specific elements can be achieved before the specified element, or delete multiple identical elements
InputAndOutputOfGrammar
- 1、了解文法定义的4个部分: G(Vn, Vt, S, P) Vn 文法的非终结符号集合,在实验中用大写的英文字母表示; Vt 文法的终结符号集合,在实验中用小写的英文字母表示; S 开始符号,在实验中是Vn集合中的一个元素; P 产生式,分左部和右部,左部为非终结符号中的一个,右部为终结符号或非终结符号组成的字符串,如S->ab|c 2、根据文法各个部分的性质,设计一个合理的数据结构用来表示文法, 1)若使用C语言编写,则文法可以设计成结构体形式,结构体中应包
queue
- 2016年春夏学期面向对象程序设计的的3次作业,队列(Queue)是一种先进先出(FIFO)的线性表,允许在表尾插入元素,在表头删除元素。队列的主要操作包括入队(将一个元素添加至表尾)、出队(删除表头元素并返回该元素)、查询队列大小以及判断队列是否为空等-3rd Job 2016 spring and summer semesters of object-oriented programming, and queue (Queue) is a first in first out (FIFO)