t.h" // 常量定义头文件#include "St.Stat.h" // 字符串定义头文件// 广义表数据结构声明typedef char AtomType;typedef enum{ATOMLIST} ElemTag;typedef struct GLNode{ElemTag tag;union{AtomType atom;struct GLNode *hp;};struct GLNode *tp;}*GList;// 将非空...