有两个循环单链表,头指针分别是head1和head2,实现算法将链表head2链接到head1以后,链接后的链表仍然是循环链表的形式

头文件:函数的声明函数 #include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef int ElemType; typedef struct Node { ElemType data; struct Node* next; }ListNode,*LinkList; LinkList CreateCycList(in
相关文章
相关标签/搜索