试试这个方法:typedef struct lista{struct lista *next;int data;}list;void insert(list *h);void del(list *h);int main(){