Welcome![Sign In][Sign Up]
Location:
Search - manual lexical

Search list

[Software Engineering编译原理报告

Description: 设计目的 1. 程序的方法实现语法分析的LL(1)方法。手工构造词法分析程序 。 2. 锻炼自己的编写程序的能力和独立的编程思维能力。提高自己的编程能力。 3. 熟悉编译原理词法分析和语法分析的方法,加深对基本方法的了解。 4. 让我们更家进一步的理解编译原理,更好的的学习它的一些思路,掌握编译原理的理论基础。 5.让我们更加熟悉编程语言的运用和编程的技巧。更加了解编程的思维方式。 6. 采用自动机这种方法来设计词法分析程序,使思路更加清晰,不会产生思维混乱错误。 -designed one. Procedures method syntax analysis LL (1) method. Manual tectonic lexical analysis procedure. 2. Tempering their preparation and the ability to independent programming and thinking abilities. Improve their programming capability. 3. Familiar with the compiler theory lexical analysis and syntax analysis method to deepen the understanding of the basic method. 4. Let us further understand home compiler theory, the better the learning some of its ideas, master compiler principles theoretical basis. 5. Let us become more familiar with the use of programming languages and programming skills. A better understanding of programming way of thinking. 6. The use of automatic machines to design this method lexical analysis procedures so that more clear thinking, thinking no confusion wrong
Platform: | Size: 48732 | Author: cyberspace | Hits:

[Other resourceC语言参考手册 第5版

Description: 在强调正确性、可移植性和可维护性的基础上,对C语言的具体细节、运行库以及C语言编程风格做了完整、准确的描述。本书涵盖了传统C语言、C89、C95、C99等所有C语言版本的实现,同时讨论了C++与C语言兼容的部分。全书自上而下介绍了C语言的词法结构、预处理器、声明、类型表达式、语句、函数和运行库,是所有C语言编程人员必备的参考书。 这本畅销的权威参考手册对C语言的基本概念和运行库提供了完整的描述,同时还强调了以正确性、可移植性和可维护性为根本出发点的良好的C语言编程风格,被国外众多高校广泛采用为教材或教学参考书,本书描述了C语言各个版本的所有细节,是C语言编程人员和实现者惟一必备的参考手册。最新的第5版经过修订和更新,融入了最新C语言标准ISO IEC 9899:1999的完整描述,包括强大的语言扩展和新的函数库。-emphasizing accuracy, portability and maintainability, based on the C language specific details of the runtime and C language programming style to do a complete and accurate description. The book covers the traditional language C, C89, High, 12-23 all C language version of the achievement, while discussing the C language and C compatible parts. The book introduced the top-down C language lexical structure, a pre-processor that statement, the type expression, the statement, function and operation of libraries, all C programmers the necessary reference books. This popular authoritative reference manual for the C language and basic concepts of operation for a complete description, but also emphasized the correctness, portability and maintainability as a fundamental starting point for the good
Platform: | Size: 6483607 | Author: 晓宁 | Hits:

[OtherThe C Programming Language-C语言详解英文版

Description: 这是一本讲解C语言的书,是英文编写,十分经典,是大部分公司的新职员入职之前必须要看的书籍之一,很多公司都以它作为培训教材,帮助你更快了解C语言的奥妙。 Contents l Preface l Preface to the first edition l Introduction 1. Chapter 1: A Tutorial Introduction 1. Getting Started 2. Variables and Arithmetic Expressions 3. The for statement 4. Symbolic Constants 5. Character Input and Output 1. File Copying 2. Character Counting 3. Line Counting 4. Word Counting 6. Arrays 7. Functions 8. Arguments - Call by Value 9. Character Arrays 10. External Variables and Scope 2. Chapter 2: Types, Operators and Expressions 1. Variable Names 2. Data Types and Sizes 3. Constants 4. Declarations 5. Arithmetic Operators 6. Relational and Logical Operators 7. Type Conversions 8. Increment and Decrement Operators 9. Bitwise Operators 10. Assignment Operators and Expressions 11. Conditional Expressions 12. Precedence and Order of Evaluation 3. Chapter 3: Control Flow 1. Statements and Blocks 2. If-Else 3. Else-If 4. Switch 5. Loops - While and For 6. Loops - Do-While 7. Break and Continue 8. Goto and labels 4. Chapter 4: Functions and Program Structure 1. Basics of Functions 2. Functions Returning Non-integers 3. External Variables 4. Scope Rules 5. Header Files 6. Static Variables 7. Register Variables 8. Block Structure 9. Initialization 10. Recursion 11. The C Preprocessor 1. File Inclusion 2. Macro Substitution 3. Conditional Inclusion 5. Chapter 5: Pointers and Arrays 1. Pointers and Addresses 2. Pointers and Function Arguments 3. Pointers and Arrays 4. Address Arithmetic 5. Character Pointers and Functions 6. Pointer Arrays; Pointers to Pointers 7. Multi-dimensional Arrays 8. Initialization of Pointer Arrays 9. Pointers vs. Multi-dimensional Arrays 10. Command-line Arguments 11. Pointers to Functions 12. Complicated Declarations 6. Chapter 6: Structures 1. Basics of Structures 2. Structures and Functions 3. Arrays of Structures 4. Pointers to Structures 5. Self-referential Structures 6. Table Lookup 7. Typedef 8. Unions 9. Bit-fields 7. Chapter 7: Input and Output 1. Standard Input and Output 2. Formatted Output - printf 3. Variable-length Argument Lists 4. Formatted Input - Scanf 5. File Access 6. Error Handling - Stderr and Exit 7. Line Input and Output 8. Miscellaneous Functions 1. String Operations 2. Character Class Testing and Conversion 3. Ungetc 4. Command Execution 5. Storage Management 6. Mathematical Functions 7. Random Number generation 8. Chapter 8: The UNIX System Interface 1. File Descriptors 2. Low Level I/O - Read and Write 3. Open, Creat, Close, Unlink 4. Random Access - Lseek 5. Example - An implementation of Fopen and Getc 6. Example - Listing Directories 7. Example - A Storage Allocator l Appendix A: Reference Manual 1. Introduction 2. Lexical Conventions 3. Syntax Notation 4. Meaning of Identifiers 5. Objects and Lvalues 6. Conversions 7. Expressions 8. Declarations 9. Statements 10. External Declarations 11. Scope and Linkage 12. Preprocessor 13. Grammar l Appendix B: Standard Library 1. Input and Output: 1. File Operations 2. Formatted Output 3. Formatted Input 4. Character Input and Output Functions 5. Direct Input and Output Functions 6. File Positioning Functions 7. Error Functions 2. Character Class Tests: 3. String Functions: 4. Mathematical Functions: 5. Utility Functions: 6. Diagnostics: 7. Variable Argument Lists: 8. Non-local Jumps: 9. Signals: 10. Date and Time Functions: 11. Implementation-defined Limits: and l Appendix C: Summary of Changes
Platform: | Size: 570630 | Author: wukoo0901@qq.com | Hits:

[OtherC语言参考手册 第5版

Description: 在强调正确性、可移植性和可维护性的基础上,对C语言的具体细节、运行库以及C语言编程风格做了完整、准确的描述。本书涵盖了传统C语言、C89、C95、C99等所有C语言版本的实现,同时讨论了C++与C语言兼容的部分。全书自上而下介绍了C语言的词法结构、预处理器、声明、类型表达式、语句、函数和运行库,是所有C语言编程人员必备的参考书。 这本畅销的权威参考手册对C语言的基本概念和运行库提供了完整的描述,同时还强调了以正确性、可移植性和可维护性为根本出发点的良好的C语言编程风格,被国外众多高校广泛采用为教材或教学参考书,本书描述了C语言各个版本的所有细节,是C语言编程人员和实现者惟一必备的参考手册。最新的第5版经过修订和更新,融入了最新C语言标准ISO IEC 9899:1999的完整描述,包括强大的语言扩展和新的函数库。-emphasizing accuracy, portability and maintainability, based on the C language specific details of the runtime and C language programming style to do a complete and accurate description. The book covers the traditional language C, C89, High, 12-23 all C language version of the achievement, while discussing the C language and C compatible parts. The book introduced the top-down C language lexical structure, a pre-processor that statement, the type expression, the statement, function and operation of libraries, all C programmers the necessary reference books. This popular authoritative reference manual for the C language and basic concepts of operation for a complete description, but also emphasized the correctness, portability and maintainability as a fundamental starting point for the good
Platform: | Size: 6482944 | Author: 晓宁 | Hits:

[Software Engineering编译原理报告

Description: 设计目的 1. 程序的方法实现语法分析的LL(1)方法。手工构造词法分析程序 。 2. 锻炼自己的编写程序的能力和独立的编程思维能力。提高自己的编程能力。 3. 熟悉编译原理词法分析和语法分析的方法,加深对基本方法的了解。 4. 让我们更家进一步的理解编译原理,更好的的学习它的一些思路,掌握编译原理的理论基础。 5.让我们更加熟悉编程语言的运用和编程的技巧。更加了解编程的思维方式。 6. 采用自动机这种方法来设计词法分析程序,使思路更加清晰,不会产生思维混乱错误。 -designed one. Procedures method syntax analysis LL (1) method. Manual tectonic lexical analysis procedure. 2. Tempering their preparation and the ability to independent programming and thinking abilities. Improve their programming capability. 3. Familiar with the compiler theory lexical analysis and syntax analysis method to deepen the understanding of the basic method. 4. Let us further understand home compiler theory, the better the learning some of its ideas, master compiler principles theoretical basis. 5. Let us become more familiar with the use of programming languages and programming skills. A better understanding of programming way of thinking. 6. The use of automatic machines to design this method lexical analysis procedures so that more clear thinking, thinking no confusion wrong
Platform: | Size: 48128 | Author: cyberspace | Hits:

[ELanguageGNU_Bison_manual

Description: GNU 的flex词法分析程序的中文使用手册。-GNU lexical analysis procedure of the flex manual in Chinese.
Platform: | Size: 131072 | Author: andy | Hits:

[ELanguageAccidAnaly1

Description: 手工编制词法分析系统,适合学生实验或开发参考-Manual preparation of lexical analysis system, suitable for students to develop experiments or reference
Platform: | Size: 183296 | Author: 张海 | Hits:

[Game ProgramTest

Description: 具有图形化界面的词法分析器,其功能为:可通过手工输入或文件打开形式输入程序,进行此法分析。-With the graphical interface of lexical analyzer, and its function as follows: through manual input or file input program to open the form, in this analysis.
Platform: | Size: 3072 | Author: 孙静 | Hits:

[ELanguagecomplier

Description: 一个纯手工的c++编译器,有词法分析、语法分析,并可以声称pcode和asm汇编码-A purely manual c++ compiler, a lexical analysis, syntax analysis, and can claim that Department of asm code and pcode
Platform: | Size: 49152 | Author: zhangzifeng | Hits:

[ELanguagebianyicifanfenxichengxu

Description: 1 掌握手工生成词法分析器的方法,了解词法分析器的内部工作原理。 2 通过设计编制调试一个具体的词法分析程序,加深对词法分析原理的理解。并掌握在对程序设计语言源程序进行扫描过程中将其分解为各类单词的词法分析方法。 3 掌握根据程序的伪代码来编写程序模块程序源代码。 -1 master the manual ways to generate lexical analyzers, lexical analyzer to understand the inner workings of the principle. 2 through the design of the preparation of debugging a lexical analysis of specific procedures, better understanding of the principles of the understanding of lexical analysis. And in the hands of the source of the programming language of its scanning process for all types of decomposition of the lexical analysis of words. 3 to master according to the procedure to the pseudo-code programming source code modules.
Platform: | Size: 691200 | Author: 李国庆 | Hits:

[ELanguagecifafeixi

Description: 编译原理的课程设计报告中的手动词法分析构造器-Principles of curriculum design report compiled in a manual constructor lexical analysis
Platform: | Size: 147456 | Author: zhouwei | Hits:

[ELanguageFlex2.5-manual

Description: FLEX 是词法分析解析器的产生器,需要提供生成规则,动作可以用C语言写-FLEX is a lexical analysis parser generator, the need to provide the generation rule, action can be written using C language
Platform: | Size: 31744 | Author: yczh | Hits:

[ELanguagelexical-analysis

Description: 编译原理的手动词法分析,包括头文件等实现。以及存放路径的TXT-Compiler theory manual lexical analysis, including the header files, etc. to achieve. And storing the path of TXT
Platform: | Size: 3072 | Author: wang | Hits:

[ELanguagemain

Description: 使用如下文法: E E+T | T T T*F | F F (E) | id 实现:对于任意给定的输入串(词法记号流)进行语法分析,要求采用LR分析器来完成。手工构造LR分析表,利用移进-归约分析算法输出对应的动作部分。-Use the following syntax:E T E+T |* F F T T |F ( E ID ) |Implementation: for any given input string ( lexical mark flow ) syntax analysis, require the use of LR parser to complete. Manual construction of LR analysis table, using shift reduce parsing algorithm output corresponding to the movement of the part.
Platform: | Size: 1024 | Author: fansofdetective | Hits:

[ELanguagencc

Description: 用C语言手工编写的词法分析器,语法分析器-With written in C++ language manual lexical analyzer, parser
Platform: | Size: 4096 | Author: 莫客 | Hits:

[Other resourcejava-c-minus

Description: 采用java语言,对c减语法实现手工词法分析,分析的源文件路径是指定的。-The java language manual lexical analysis, analysis of c less syntax of the source file path is specified.
Platform: | Size: 7168 | Author: 余红全 | Hits:

[ELanguagejflex-1.4.1

Description: 用java语言编写的词法分析器,可以根据manual的要求编写词法文件,自动生成语法分析器。-Lexical analyzer java language, according to the requirements of the manual preparation of lexical files, and automatically generate a parser.
Platform: | Size: 1063936 | Author: ericxing | Hits:

CodeBus www.codebus.net