张乃孝版的数据结构课本课件讲解代码SeqDictionary.c.doc
/* SeqDictionary.c*/ /*字典的顺序表示方式*/ /*注意这里没有给出全部的函数只是教材中给出了实现的函数*/ typedef int KeyType; typedef int DataType; typedef struct { KeyType key; /* 字典元素的关键码字段 */ DataType value; /* 字典元素的属性字段 */ }DicElement;
下载地址
用户评论