数据结构-链表题
题目平台TZOJ,题号4672
代码运行Runtime Error,链表是否会受到长度限制!!!
高手们抽出宝贵时间看一下!
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef int Elemtype;
typedef struct node
{
Elemtype data;
struct node *next;
}Node;
Node* CreateLinkList()//创建链表 ,返回链表头指针
{
Node *head = (Node *)malloc(sizeof(Node));
head->next = NULL;
Node *r = head;
int n;
scanf("%d",&n);
while(n-->0)
{
Node *p = (Node *)malloc(sizeof(Node));
scanf("%d",&p->data);
p->