#include stdio.h #include stdlib.h /*与malloc.h差不多*/ #include string.h #define maxlen 100 strUCt persons { char name[10]; /*定义结构体数组用于缓存数据*/ char addr[20]; char phnum[10]; }persons[maxlen]; ; ; ; typedef struct lnode{ /*通讯录结构中结点的定义*/ char name[10];&nbs...
[ 查看全文 ]