文件名称:Syntax-analysis
介绍说明--下载内容均来自于网络,请自行研究使用
采用递归下降语法分析方法对输入的字符串进行语法分析,实现对词法程序提供的单词序列的语法检查和结构分析
待分析的Traning语言的语法用扩充的BN表示:
1.<程序>::=function<语句串>endfunc
2.<语句串>::=<语句>{ <语句>}
3.<语句>::=<赋值语句>
4.<赋值语句>::=ID=<表达式>
5.<表达式>::=<项>{+<项>|-<项>}
6.<项>::=<因子>{*<因子>|/<因子>}
7.<因子>::=ID|NUM|<表达式>-A string with the recursive descent parsing method for input of syntax analysis, syntax checking and structure analysis of lexical word sequence of the program
The analysis of the Traning language grammar represented by extended BN:
The 1.< program >:: =function< statement string >endfunc
The 2.< statement string >:: =< statement >{ < statement >}
The 3.< statement >:: =< assignment statement.
4.< assignment statement >:: =ID=< expression.
5.< expression:: =< item >{+< item > >|-< item >}
6.< >:: =< factor >{*< factor >|/< factor >}
7.<:: =ID|NUM|< expression factor > >
待分析的Traning语言的语法用扩充的BN表示:
1.<程序>::=function<语句串>endfunc
2.<语句串>::=<语句>{ <语句>}
3.<语句>::=<赋值语句>
4.<赋值语句>::=ID=<表达式>
5.<表达式>::=<项>{+<项>|-<项>}
6.<项>::=<因子>{*<因子>|/<因子>}
7.<因子>::=ID|NUM|<表达式>-A string with the recursive descent parsing method for input of syntax analysis, syntax checking and structure analysis of lexical word sequence of the program
The analysis of the Traning language grammar represented by extended BN:
The 1.< program >:: =function< statement string >endfunc
The 2.< statement string >:: =< statement >{ < statement >}
The 3.< statement >:: =< assignment statement.
4.< assignment statement >:: =ID=< expression.
5.< expression:: =< item >{+< item > >|-< item >}
6.< >:: =< factor >{*< factor >|/< factor >}
7.<:: =ID|NUM|< expression factor > >
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Syntax analysis.cpp