typedef struct _node{ char *name; char *desc; struct _node *next;}node;#define HASHSIZE 101static node* hashtab[HASHSIZE];
本文共 184 字,大约阅读时间需要 1 分钟。
typedef struct _node{ char *name; char *desc; struct _node *next;}node;#define HASHSIZE 101static node* hashtab[HASHSIZE];
转载于:https://www.cnblogs.com/ailx10/p/7658605.html