| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 383 人关注过本帖
标题:请帮个忙
只看楼主 加入收藏
linfener
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-11-22
收藏
 问题点数:0 回复次数:2 
请帮个忙

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

typedef struct list
{
int data;
struct list *next;
}node;

/*创建链表函数*/
node *creat(int n)
{
int i,x;
node *head;
node *p,*q;
i=1;
head=(node *)malloc(sizeof(node));
p=head;
while(i<=n)
{
q=(node *)malloc(sizeof(node));
printf("input the node\n");
scanf("%d",&x);
q->data=x;
p->next=q;
p=p->next;
}
p->next=NULL;
q=head;
head=head->next;
free(q);
return(head);
}
/*输出链表函数*/
void print(node *head)
{
node *p;
p=head;
while(p!=NULL)
{printf("%d",p->data);}
}
void main()
{ /*建立一个逆续链表并输出*/
int n,t;
node *head1;
scanf("%d",&n);
printf("creat a %d list\n",n);
head1=creat(n);
printf("output the list\n");
print(head1);
scanf("%d",&t);
}

搜索更多相关主题的帖子: include 
2006-11-22 09:05
smartwind
Rank: 1
等 级:新手上路
威 望:1
帖 子:277
专家分:0
注 册:2006-11-13
收藏
得分:0 
你想要我们帮你干啥?

2006-11-22 09:52
财鸟
Rank: 1
等 级:新手上路
帖 子:132
专家分:0
注 册:2006-11-2
收藏
得分:0 
不知道你想做是没!!!!!!!!!!!!!!
2006-11-22 16:16
快速回复:请帮个忙
数据加载中...
 
   



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

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