标题:请帮个忙
只看楼主
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



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-104584-1-1.html




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

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