搜索资源列表
whale-0.3.2-src.zip
- Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation
围棋游戏
- 围棋游戏,可以进行围棋的打谱,记谱功能,也可以观看别人记录下的围棋棋谱-Go games, can play the Go spectrum Notation function, nor can watch others go down the batter
NumEdit_demo(An E Notation Numeric Edit Control).z
- CloseSmoothly_demo,实现数字化输入的编辑框控件,数字,字符过滤功能-CloseSmoothly_demo, digital input edit box control, numbers, characters filtering
qipu011
- 围棋简谱录入程序0.1.1版及源代码 这个程序的前身是死活题原型录入程序,增加了自认为有用的若干功能,尤其有助于网上发贴子和制作围棋网页。最新的改进请看 ReadMe 文件,-number notation entry procedures 0.1.1 version of the source code and the process of life and death and that is the predecessor
24355
- 利用UML对一个分布式Java应用建模(Using UML for Modeling a Distributed Java Application), 以一个教师时间管理系统的开发为例,展示了UML在整个开发过程中的应用.pdf 数码声音记录器 应用UML设计嵌入式系统的案例(Digital Sound Recorder A case study on designing embedded systems using the
DR_TOOL
- ASN.1(Abstract Syntax Notation One)是由ITU-T制定的,符合以上三点要求。它定义的编码规则(如BER、PER)就相当于从局部语法到传送语法之间的转换规则。目前,很多网络协议的消息格式都是用ASN.1句法描述的,并指明了采用何种编码规则。在协议的具体实现时,我们必须在发送方设置一个ASN.1编码器,将发送方所要传送的消息经ASN.1编码后再发送出去;然后在接收方设置一个ASN.1解码器,将接收到的经A
music_by_mcu
- 简谱为字符串数组,与用手机编写音乐一样,可放多首曲子 爱我中华 女人花-number notation to a string array, and using cell phones to prepare music, may be the first to put more women spend pointed song
X.680-0207
- Information technology – Abstract Syntax Notation One (ASN.1): Specification of basic notation。ASN.1的标准定义。-Information technology-Abstract Syntax Notation One (ASN.1) : Specification of basic notation. The ASN.1 stan
UML_example
- uml 实例 Digital Sound Recorder: A case study on designing embedded systems using the UML notation.-uml Digital Sound Recorder examples : A case study on designing embedded systems usin g the UML notation.
X.680-0207
- Information technology – Abstract Syntax Notation One (ASN.1): Specification of basic notation。ASN.1的标准定义。-Information technology-Abstract Syntax Notation One (ASN.1) : Specification of basic notation. The ASN.1 stan
PostfixConversion
- Calculator algorithm with postfix notation. Example of usage.
MusicEncode
- 51单片机编写的音乐代码生成器,输入简谱生成表单,含源码 并包含4首歌曲的表单 挥着翅膀的女孩 同一首歌 两只蝴蝶 两只老虎-51 MCU write music code generator, enter the notation generated form, including source code and includes four songs form the wings of the girls, w
MIDI-File-Printer
- The MIDI File Printer prints a new easy-to-read music notation. It expects standard MIDI files as input, displays them in a configurable way on the screen and prints them out.
Music-notation-software-and-C-code
- 单片机中应用的音乐乐谱提取软件和音乐常识及C代码详解,资料包含软件及对应的C代码-Music notation software and music knowledge extraction and C code Xiangjie
Polish-Notation-expression
- 逆波兰式表达式求值,简单明了,步骤清晰,可以运行成功。-Reverse Polish Notation expression evaluation, simple, clear steps, you can run successfully.
Notation
- Notation Source Code for Linux Interface
Notation
- The public identifier of this notation. If the public identifier was not specified, this is <code>null</code>.
postfix-notation
- 1、给出文法如下: G[E] E->T|E+T T->F|T*F F->i(E) 对应的转化为逆波兰式的语义动作如下: E-> E(1)op E(2) {E.CODE:= E(1).CODE||E(2).CODE||op} E->(E(1)) { E.CODE := E(1).CODE} E->id { E.CODE := id} 2、利用实验5中
Notation--Symbols--Abbreviations
- Notation ans symbols
Reverse Polish Notation
- 逆波兰表达式求值 C++实现,数据结构使用的是栈(Reverse Polish notation)