标签:技术分享 结构 size esc cpp name struct nod char
typedef struct _node{ char *name; char *desc; struct _node *next; }node; #define HASHSIZE 101 static node* hashtab[HASHSIZE];
哈希表结构
原文地址:http://www.cnblogs.com/ailx10/p/7658605.html