Skip to content

Instantly share code, notes, and snippets.

@kaili302
kaili302 / main.c
Created December 15, 2019 21:59
合并list
#include <stdio.h>
#include <malloc.h>
typedef int ElemType;
typedef struct LNode //定义单链表结构
{
ElemType data;
struct LNode *next;
}LinkNode;
void InitList(LinkNode *&L) //初始化单链表