思想为:head指针不断后移,指针反向即可,代码为: #include <stdio.h> #include <conio.h> #include <malloc.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }node,*LinkList; void creat(LinkList &L) { node *p,*q; L=(LinkList)malloc(sizeof(node)); if (L==...
思想为:head指针不断后移,指针反向即可,代码为: #include <stdio.h> #include <conio.h> #include <malloc.h> #include <stdlib.h> typedef struct node { int data; struct node *next; }node,*LinkList; void creat(LinkList &L) { node *p,*q; L=(LinkList)malloc(sizeof(node)); if (L==...