为了账号安全,请及时绑定邮箱和手机立即绑定

如何新建一个链表?

老是无法新建。

正在回答

1 回答

#include <stdio.h>
#include<stdlib.h>
//#include<malloc.h>
#define Maxsize 100

typedef int ElemType;
typedef struct
{
ElemType data[Maxsize];
int length;
}SqList;

SqList *init_SqList()
{
SqList * L;
L=(SqList *)malloc(sizeof (SqList));
if(!L) exit(1);
L->length=0;
return L;
}

0 回复 有任何疑惑可以回复我~
#1

Alan_Zhao 提问者

创建链表需要create 函数。
2017-12-15 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

如何新建一个链表?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信