📄 slr.cpp
字号:
#include <iostream>
#include <fstream>
#include "DATA.h"
#include "FOLLOW.h"
#include "LR0Set.h"
#include "SHOW.h"
#include "SLR1Grid.h"
#include "SLRDFA.h"
#include "INIT.h"
using namespace std;
int main()
{
init();
Show_G();
FOLLOW();
Show_First();
Show_Follow();
LR0Set();
Show_G_extend();
Show_LR0();
SLR1Grid();
Show_SLR1Grid();
SLRDFA();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -