SLR 分析器代码:构造 SLR 项目集和分析表
{
"namespace WindowsFormsApp4": {
"class SLR": {
"//产生式结点类": {
"public class LRproNode": {
"public string Left;
public string Right;
public LRproNode(string Left, string Right)
{
this.Left = Left;
this.Right = Right;
}
}
},
"//项目集类": {
"public class LR_club": {
"public List
原文地址: https://www.cveoy.top/t/topic/f0lj 著作权归作者所有。请勿转载和采集!