lab2.h
来自「this is a lp0 compilator new」· C头文件 代码 · 共 22 行
H
22 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?