| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 682 人关注过本帖
标题:[求助]建立包含N个人姓名的单链表的问题
取消只看楼主 加入收藏
pinglideyu
Rank: 3Rank: 3
来 自:武汉工程大学
等 级:论坛游侠
威 望:1
帖 子:735
专家分:140
注 册:2007-1-7
结帖率:100%
收藏
 问题点数:0 回复次数:1 
[求助]建立包含N个人姓名的单链表的问题
#include <stdio.h>
#include <conio.h>
#include "string.h"
#include <malloc.h>
#define SIZE 2
#define NULL 0
struct node
{
char name[SIZE];
struct node *next ;
};

node *creat()
{
node *head,*p,*q;
int i=0;
char s[100];
head=(node *)malloc(sizeof(node));
head->next=NULL;
q=head;
printf("please input your data:\n");
fflush(stdin);

while(i<SIZE)
{
p=(node *)malloc(sizeof(node));
gets(s);
strcpy(p->name,s);
p->next=NULL;
q->next=p;
q=p;
i++;
}
return head;
}
void disp(node *head)
{
node *p;
p=head;
printf("print the data:\n");
while(p!=NULL)
{
printf("%s",p->name);
p=p->next;
printf("\n");
}
}
int main()
{
node *head;
head=creat();
disp(head);
getch();
return(0);
}
搜索更多相关主题的帖子: 单链 姓名 
2007-07-10 20:26
pinglideyu
Rank: 3Rank: 3
来 自:武汉工程大学
等 级:论坛游侠
威 望:1
帖 子:735
专家分:140
注 册:2007-1-7
收藏
得分:0 
是这样的。。这个程序出不来结果的,不知道是为什么样。
我定义的SIZE 为2是为了便于调试才这样写的,也可以弄大点的。
对于这个程序就劳烦各位帮忙 了。

~~我的明天我知道~~
2007-07-12 15:36
快速回复:[求助]建立包含N个人姓名的单链表的问题
数据加载中...
 
   



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

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