⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 symboltable.h

📁 一个用c++编译的词法分析器
💻 H
字号:
#include<string>
#include<fstream>
//#include <iomanip>
using namespace std;

struct Element
{
	string token;
	int line;
};

class SymbolTable{
private:
	Element table[2000];
	int count;
public:
	SymbolTable();
	SymbolTable(Element array[],int number);
	bool isPresent(string token0);
	void insert(Element entry);
	void outPutTable(ofstream& out);
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -