动态链表的创建输出查找 分享一下 自己的typedef struct {KeyType key; }ElemType; typedef struct { ElemType *elem; int length; }SSTable;