| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1172 人关注过本帖
标题:想不到创建单链表都令我抓狂,求代码改错。
取消只看楼主 加入收藏
千马弈
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-22
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
想不到创建单链表都令我抓狂,求代码改错。

各位大神,刚学数据结构,写了一段创建单链表的代码,但在vc6.0编译不过,很郁闷。
各位看看,能帮我改一下吗?
#include <stdio.h>
#include <malloc.h>
#include<stdlib.h>
#define NUll 0

typedef struct LNode{
    int data;
    struct LNode *next;
}LinkList;




 void InitList(LinkList *p)
{LinkList *L;
L=(LinkList*)malloc(sizeof(LinkList));
L->next=NULL;
}


 void CreatLIst(LinkList *L,int n)
{
 
InitList(LinkList *L);
LinkList *p;
int i;
for(i=n;i>0;i--)
{p=(LinkList*)malloc(sizeof(LinkList));
scanf(&p->data);
p->next =NULL;
L->next=p;
}


void main()
{}










搜索更多相关主题的帖子: next void include 
2012-03-25 11:11
千马弈
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-22
收藏
得分:0 
这是编译错误提示

D:\C语言\danlianbiao\dan.cpp(25) : error C2275: 'LinkList' : illegal use of this type as an expression
        D:\C语言\danlianbiao\dan.cpp(10) : see declaration of 'LinkList'
D:\C语言\danlianbiao\dan.cpp(30) : error C2664: 'scanf' : cannot convert parameter 1 from 'int *' to 'const char *'
        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
D:\C语言\danlianbiao\dan.cpp(37) : error C2601: 'main' : local function definitions are illegal
D:\C语言\danlianbiao\dan.cpp(49) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.

dan.obj - 1 error(s), 0 warning(s)
2012-03-25 11:13
千马弈
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-22
收藏
得分:0 
谢谢,我懂了
2012-04-15 13:39
快速回复:想不到创建单链表都令我抓狂,求代码改错。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016091 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved