当前位置: 代码迷 >> C语言 >> 简单改错(滴水之恩当涌泉相报)
  详细解决方案

简单改错(滴水之恩当涌泉相报)

热度:235   发布时间:2005-12-04 13:30:00.0
简单改错(滴水之恩当涌泉相报)

#include <stdio.h>
#include <stdlib.h>

#define ERROR 0;
#define TRUE 1;
#define OK 1;

typedef int ElemType;
typedef int Status;
typedef struct LNode
{
ElemType data;
struct Lnode *next;
}LNode,*LinkList;
LNode *L;

Status CreateList(LinkList L,int n){
int i;
LNode *p;
L=(LinkList)malloc(sizeof(LNode));
//L=p;
L->data=0;
printf("%d\n",L->data);
L->next=NULL;
for( i=1;i<=n;i++)
{
p=(LinkList)malloc(sizeof(LNode));
{
scanf("%d",&(p->data));
//getchar();

p->next=L->next;
L->next=p; //关键在这里
}
}
return OK;
}
int main(void)
{
int i=0;
// LNode *L;

CreateList(L,3);
L=L->next;

while( L->next && i<4)
{ printf("%d\n",L->data);
i++;
L=L->next;} //关键在这里!
return 0;
}

三个警告,运行出错,请指点错误!!!!!

[此贴子已经被作者于2005-12-4 17:45:46编辑过]

搜索更多相关的解决方案: 涌泉  滴水  改错  

----------------解决方案--------------------------------------------------------

#include <stdio.h>
#include <stdlib.h>

#define ERROR 0;
#define TRUE 1;
#define OK 1;

typedef int ElemType;
typedef int Status;
typedef struct LNode
{
ElemType data;
struct LNode *next;
}LNode,*LinkList;


Status CreateList(LinkList L,int n){
int i;
LNode *p;
//L=(LinkList)malloc(sizeof(LNode));
//L=p;
//L->data=0;
printf("%d\n",L->data);
L->next=NULL;
for( i=1;i<=n;i++)
{
p=(LinkList)malloc(sizeof(LNode));
{
p->data=i;
printf("%d",p->data);
//getchar();

p->next=L->next;
L->next=p; //关键在这里
}
}
return OK;
}
int main(void)
{
int i=1;
LNode *L;
L=(LinkList)malloc(sizeof(LNode));
L->data=0;
printf("%d\n",L->data);
L->next=NULL;

CreateList(L,10000);
L=L->next;

while( i<10000)
{
printf("%d",L->data);
sleep(2000);
i++;
L=L->next;
} //关键在这里!
return 0;
}

问题已解决
谢谢


----------------解决方案--------------------------------------------------------
  相关解决方案