Description: The Compiler Generator Coco/R
Coco/R1 is a compiler generator, which takes an attributed grammar of a source language
and generates a scanner and a parser for this language. The scanner works as a
deterministic finite automaton. The parser uses recursive descent. LL(1) conflicts can be
resolved by a multi-symbol lookahead or by semantic checks. Thus the class of accepted
grammars is LL(k) for an arbitrary k.
There are versions of Coco/R for Java, C#, C++, Delphi, Modula-2, Oberon and other
languages. This manual describes the versions for C# and Java implemented at the Platform: |
Size: 42373 |
Author:yy |
Hits:
Description: c语言编写的词法分析器 可以用于PASCAL语言-c language prepared by the lexical analyzer can be used for language PASCAL Platform: |
Size: 3646 |
Author:李雪莹 |
Hits:
Description: 本光盘提供了 嵌入式系统一些通用模块源代码,比如 键盘扫描器,显示器接口,计量器和输入输出,大部分代码是用可移植的C语所写。-the CD provided some common embedded system module source code, for example, the keyboard scanner, display interface, metering and input and output, with most of the code is portable C language written. Platform: |
Size: 81181 |
Author:陈少良 |
Hits:
Description: 本光盘提供了 嵌入式系统一些通用模块源代码,比如 键盘扫描器,显示器接口,计量器和输入输出,大部分代码是用可移植的C语所写。-the CD provided some common embedded system module source code, for example, the keyboard scanner, display interface, metering and input and output, with most of the code is portable C language written. Platform: |
Size: 80896 |
Author: |
Hits:
Description: The Compiler Generator Coco/R
Coco/R1 is a compiler generator, which takes an attributed grammar of a source language
and generates a scanner and a parser for this language. The scanner works as a
deterministic finite automaton. The parser uses recursive descent. LL(1) conflicts can be
resolved by a multi-symbol lookahead or by semantic checks. Thus the class of accepted
grammars is LL(k) for an arbitrary k.
There are versions of Coco/R for Java, C#, C++, Delphi, Modula-2, Oberon and other
languages. This manual describes the versions for C# and Java implemented at the-The Compiler Generator Coco/RCoco/R1 is a compiler generator, which takes an attributed grammar of a source languageand generates a scanner and a parser for this language. The scanner works as adeterministic finite automaton. The parser uses recursive descent. LL (1) conflicts can beresolved by a multi-symbol lookahead or by semantic checks. Thus the class of acceptedgrammars is LL (k) for an arbitrary k.There are versions of Coco/R for Java, C#, C++, Delphi, Modula-2, Oberon and otherlanguages. This manual describes the versions for C# and Java implemented at the Platform: |
Size: 41984 |
Author:yy |
Hits:
Description: c语言编写的词法分析器 可以用于PASCAL语言-c language prepared by the lexical analyzer can be used for language PASCAL Platform: |
Size: 3072 |
Author:李雪莹 |
Hits:
Description: (1)C++源代码扫描程序识别C++记号。
C++语言包含了几种类型的记号:标识符,关键字,数(包括整数、浮点数),字符串、注释、特殊符号(分界符)和运算符号等。
(2)打开一个C++源文件,打印出所有以上的记号。
(3)要求应用程序应为Windows界面。-(1) C++ Source code scanner to identify C++ Mark. C++ Language contains several types of marks: identifiers, keywords, a few (including integer, floating point), strings, notes, special symbols (at boundaries), and symbols, such as computing. (2) Open a C++ Source file, print out all the above marks. (3) request applications for the Windows interface. Platform: |
Size: 45056 |
Author:da |
Hits:
Description: 内容:C++源代码单词扫描程序(词法分析)
功能:
(1)C++源代码扫描程序识别C++记号。
C++语言包含了几种类型的记号:标识符,关键字,数(包括整数、浮点数),字符串、注释、特殊符号(分界符)和运算符号等。
(2)打开一个C++源文件,打印出所有以上的记号。
(3)应用程序应为Windows界面。
-Content: C++ Source code word scanner (lexical analysis) functions: (1) C++ Source code scanner to identify C++ Mark. C++ Language contains several types of marks: identifiers, keywords, a few (including integer, floating point), strings, notes, special symbols (at boundaries), and symbols, such as computing. (2) Open a C++ Source file, print out all the above marks. (3) applications for Windows interface. Platform: |
Size: 45056 |
Author:sky |
Hits:
Description: 简单源程序的词法分析程序的C语言实现,输出二元式,保存在外部文件-Simple source of the lexical analysis of C language procedures realize, the output of binary type, stored in an external file Platform: |
Size: 413696 |
Author:李勇 |
Hits:
Description: C语言写的简单的端口扫描程序,内附源码,仅供学习-C language to write a simple port scanner, enclosing the source, for study Platform: |
Size: 133120 |
Author:maxir |
Hits:
Description: 设计一个词法扫描器。词法扫描器的功能是输入源程序,输出单词符号。写出关键字集合和程序流程图。例如源程序为C语言。输入如下一段:
main() {
int a,b
a = 10
b = a + 20
}
输出如图:
(2,”main”)
(5,”(“)
(5,”)“)
(5,”{“)
(1,”int”)
(2,”a”)
(5,”,”)
(2,”b”)
(5,” ”)
(2,”a”)
(4,”=”)
(3,”10”)
(5,” ”)
(2,”b”)
(4,”=”)
(2,”a”)
(4,”+”)
(3,”20”)
(5,” ”)
(5,” ) “ )
-Design of a lexical scanner. Function of lexical scanner is an input source and output word symbols. Write keyword collections and program flow diagram. For example, for the C language source code. Enter the following paragraph:
main () (
int a, b
a = 10
b = a+ 20
)
Output shown:
(2, "main")
(5 ,"(")
(5 ,")")
(5 ,"{")
(1, "int")
(2, "a")
(5 ,",")
(2, "b")
(5 ," ")
(2, "a")
(4 ,"=")
(3, "10")
(5 ," ")
(2, "b")
(4 ,"=")
(2, "a")
(4 ,"+")
(3, "20")
(5 ," ")
(5, ")") Platform: |
Size: 2048 |
Author:覃曼丽 |
Hits:
Description: 汇编词法分析器,无符号数的识别及符号扫描程序,c语言-Compilation of the lexer, unsigned identification and symbol scanner, c language Platform: |
Size: 1024 |
Author:iChenxi |
Hits:
Description: 用C语言实现,简单的编译扫描器,完成编译工作的第一步。扫描目标语言为JAVA。-Implemented in C language, a simple compiled scanner, completed the first step in the compilation.Scanning the target for the JAVA language. Platform: |
Size: 4096 |
Author:fjf |
Hits: