📄 lab2.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 + -