哈希表结构

 

 

typedef struct _node{
    char *name;
    char *desc;
    struct _node *next;
}node;

#define HASHSIZE 101
static node* hashtab[HASHSIZE];

  

posted @ 2017-10-12 22:43  ailx10  阅读(228)  评论(0编辑  收藏  举报