张乃孝版的数据结构课本课件讲解代码HashDictionary.c.doc
/* HashDictionary.c*/ /*字典的散列表示*/ /*注意这里没有给出全部的函数只给出了教材中提供了实现的函数*/ #include #include typedef int KeyType; typedef int DataType; typedef struct { KeyType key; /* 字典元素的关键码字段 */ Data
下载地址
用户评论