| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 504 人关注过本帖
标题:链表相关问题(高手指教错在哪)
取消只看楼主 加入收藏
manmanmalu
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2009-7-30
收藏
 问题点数:0 回复次数:0 
链表相关问题(高手指教错在哪)
#include<stdio.h>
#include<malloc.h>
struct node
{
    int data;
    struct node *next;
};

struct node * create(struct node *head)
{   
    struct node *news,*tail;
    int value;
    head=tail=NULL;
    printf("请输入一个整数:  ");
    scanf("%d",&value);
    while(value!=0)
    {
     news=(struct node *)malloc(sizeof(struct node));
     news->data=value;
     news->next=NULL;
    if(head==NULL)
      head=tail=news;      
    else
      {
      tail->next=news;
      tail=news;
      }
    printf("请输入一个整数:  ");
    scanf("%d",&value);
    return(head);
}
void output(struct node *head)
{
   struct node * p;
   p=head;
   while(p!=NULL)
   {
    printf("%d\n",p->data);
    p=p->next;
   }
}
void main()
{   struct node *head1,*head2;
    head1=head2=NULL;
    head2=create(head1);
    output(head2);

}
搜索更多相关主题的帖子: 指教 链表 
2009-09-15 15:59
快速回复:链表相关问题(高手指教错在哪)
数据加载中...
 
   



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

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