| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 424 人关注过本帖
标题:[求助]关于链表的问题,谢谢(跪求多时无人了)
只看楼主 加入收藏
nazijack
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-8-25
收藏
 问题点数:0 回复次数:4 
[求助]关于链表的问题,谢谢(跪求多时无人了)

我写了3个文件main.c list.c pub.h
main.c:

#include <stdio.h>
#include <malloc.h>
#include "pub.h"

int main()
{
struct student *head1,*head2;

head1 = creat();
head2 = creat();

destroy(head1);
destroy(head2);

getchar();

return 1;
}

list.c:

#include <stdio.h>
#include <malloc.h>
#include "pub.h"

struct student *creat()
{
struct student head;
struct student *p;
int num;
float scroe;

head.next = NULL;
scanf("%d,%f",&num,&scroe);
while(num != 0)
{
p = (struct student *)malloc(LEN);
if(p == NULL)
{
printf("memory is not enough!\n");
break;
}

p->num = num;
p->scroe = scroe;

p->next = head.next;
head.next = p;

scanf("%d,%f",&num,&scroe);
}

if(p == NULL)
{
destroy(head.next);

return NULL;
}

return head.next;
}

int destroy(struct student *head)
{
struct student *p = head;
struct student *pNext = NULL;

while(p != NULL)
{
pNext = p->next;
free(p);
p = pNext;
}

return 1;
}

pub.h

#ifndef _STULIST_H
#define _STULIST_H

struct student
{
int num;
float scroe;
struct student *next;
};

struct student *creat();
int destroy(struct student *head);

#define LEN sizeof(struct student)

#endif

用dev C++编译后显示:
图片附件: 游客没有浏览图片的权限,请 登录注册

(list.c中)


图片附件: 游客没有浏览图片的权限,请 登录注册

(main.c中)
请问这是什么原因啊,求解,谢谢!



[此贴子已经被作者于2007-9-18 23:04:19编辑过]

搜索更多相关主题的帖子: 链表 
2007-09-18 22:18
nazijack
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-8-25
收藏
得分:0 
谁帮下忙啊?我看了半天,没搞懂
2007-09-18 22:27
nazijack
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-8-25
收藏
得分:0 
求助啊~~~~~~~~~~等了好久了
2007-09-18 23:03
雨中飞燕
Rank: 3Rank: 3
等 级:禁止访问
威 望:8
帖 子:2200
专家分:0
注 册:2007-8-9
收藏
得分:0 
destroy函数没有声明??
还有,貌似你建立了错误的工程,并不是Console



by 雨中飞燕 QQ:78803110 QQ讨论群:5305909

[url=http://bbs.bc-cn.net/viewthread.php?tid=163571]请大家不要用TC来学习C语言,点击此处查看原因[/url]
[url=http://bbs.bc-cn.net/viewthread.php?tid=162918]C++编写的Windows界面游戏[/url]
[url=http://yzfy.org/]C/C++算法习题(OnlineJudge):[/url] http://yzfy.org/
2007-09-18 23:03
nazijack
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-8-25
收藏
得分:0 

哦,谢谢了

2007-09-18 23:06
快速回复:[求助]关于链表的问题,谢谢(跪求多时无人了)
数据加载中...
 
   



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

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