📄 declarant.h
字号:
#ifndef DECLARANT_H
#define DECLARANT_H
#include<iostream>
#include<set>
#include<map>
#include<vector>
#include<deque>
using namespace std;
struct wedge
{
char c;//边上的字符
int state; //新的状态
wedge* next;
};
struct node
{
set<int > newstate;
char c;
node* next;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -