C语言实现简单而通用的字典 “字典”的特殊数据类型定义 实现以下6个接口 完整头文件 完整源文件 main 测试文件 “字典”的特殊数据类型定义 typedef struct Dict { /* void* array for generic use of the dictionary. there actual saves the entries. */ void *elements[MAXELEMENTS]; /* contains the number of elements in this dictionary */ int number_of_elements; <