《如何逆序创建单链表》正文开始,本次阅读大概9分钟。
struct Node *create(int n)//逆序创建带头节点单链表,n为链表中元素个数{ struct Node *L;//L为表头 L=(struct Node*)malloc(sizeof(struct Node)); L->next=NULL; for(int i=0;i
《如何逆序创建单链表》正文开始,本次阅读大概9分钟。
struct Node *create(int n)//逆序创建带头节点单链表,n为链表中元素个数{ struct Node *L;//L为表头 L=(struct Node*)malloc(sizeof(struct Node)); L->next=NULL; for(int i=0;i