③82静态查找表 typedef struct( Datatype data;∥元素数据 Key Type key;∥元素关键字 } Elemtype;/数据元素类型 typedef struct( E! emtype*elem;∥约定从下标1开始 Int en } StaticSrhtable;/顺序静态查找表类型 pboustc. edu. cn 中国科学技术大学ypb@ustc.edu.cn 3 中国科学技术大学 8.2静态查找表 typedef struct{ Datatype data; //元素数据 KeyType key; //元素关键字 }Elemtype; //数据元素类型 typedef struct{ Elemtype *elem; //约定从下标1开始 int len; }StaticSrhTable; //顺序静态查找表类型