数据结构之广义表

#include<stdio.h> #include<stdlib.h> typedef struct lnode { int tag; union{ char data; struct lnode * sublist; } val; struct lnode * link; }GLNode; int GLLength(GLNode *g)//长度 { int n=0;
相关文章
相关标签/搜索