include <stdio.h>#include <malloc.h>typedef struct nlist{ int *np; int len;//已使用地址个数 int maxlen;//最大地址个数}NLT;NLT *createlist();//创建顺序表int addtolist(NLT *nlist);//向顺序表插入元素void pList(NLT *nlist);//遍历顺序表int main(){ int i;...