帶頭結點的兩個鏈表La,Lb,將兩個鏈表合併到La中,並且不破壞Lb的結構

#include<stdio.h> #include<malloc.h> typedef struct LNode{ int data; struct LNode *next; }LNode,*LinkList; void CreateList(LinkList &L,int n) { L=(LinkList)malloc(sizeof(LNode)); L->next=NULL; LinkLis
相關文章
相關標籤/搜索