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

📄 lab2.h

📁 this is a lp0 compilator new
💻 H
字号:
/*   Gerald Carter   CSE 521    Spring 1994   lab1.h   This file contains the declarations for the binary search tree used to hold   the tokens from lab1 as well as the functions to print the tree and insert   items into the tree.*/typedef struct node {   char           *lexeme;   int            token_val;   int            symbol_val;   int		  count;   struct node    *leftchild,                  *rightchild;} tree_node;extern int PrintTable (tree_node*, int);extern int Insert (char*, int);

⌨️ 快捷键说明

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