C++ 两个链表的交集
#include
#include
typedef int ElemType;
typedef struct node
{
ElemType data;
struct node* next;
}LNode, * LinkList;
void CreateList(LinkList* L)
{
LinkList p,r;
int i;
*L = (LinkList)malloc(sizeof(LNode));
(*L)->next = NULL;
r = *L;
int a;
scanf("%d", &a);
while (a != -1)
{
p = (LNode*)malloc(sizeof(LNode)); // 生成新结点
p->data = a;
p->next = (*L)->next;
C++ 两个链表的交集最先出现在Python成神之路。
共有 0 条评论