數據結構之廣義表

#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;
相關文章
相關標籤/搜索