| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 445 人关注过本帖
标题:帮忙看看链表怎么只输出一个数,且有警告
只看楼主 加入收藏
weiyin868
Rank: 1
来 自:湖北黄冈
等 级:新手上路
帖 子:5
专家分:0
注 册:2010-7-17
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
帮忙看看链表怎么只输出一个数,且有警告
#include<stdio.h>
#include<stdlib.h>
struct stu{
    int date;
    struct stu *next;
};
void main(void)
{
    struct stu *h,*s,*w;
    h=(struct stu*)malloc(sizeof(struct stu));
    s=(struct stu*)malloc(sizeof(struct stu));
    h->next=s;
    s->date=1;
    s=(struct stu*)malloc(sizeof(struct stu));
    s->date=2;
    s->next='\0';
    w=h->next;
    while((w->next)!='\0')
    {
      printf("%d",w->date);
      w=w->next;
    }
}
搜索更多相关主题的帖子: 链表 输出 警告 
2010-08-08 09:50
ciweitou163
Rank: 7Rank: 7Rank: 7
来 自:河北 石家庄
等 级:黑侠
威 望:1
帖 子:144
专家分:528
注 册:2008-10-4
收藏
得分:20 
试试这个,参照你的看看,是不是你需要的?
程序代码:
#include<iostream>
#include<cstdlib>
using namespace std;

struct stu{
    int date;
    struct stu *next;
};

int main(void)
{
    struct stu *h,*s,*w;
    h=(struct stu*)malloc(sizeof(struct stu));
    s=(struct stu*)malloc(sizeof(struct stu));
    w=(struct stu*)malloc(sizeof(struct stu));
    h->next=s;
    s->date=1;
    s->next=w;
    w->date=2;
    w->next='\0';
    //w=h->next;
    while((h->next)!='\0')
    {
      h=h->next;
      cout<<h->date<<endl;      
    }
    return 0;
}


  • 满眼生机转化钧;天工人巧日争新。
2010-08-08 10:08
weiyin868
Rank: 1
来 自:湖北黄冈
等 级:新手上路
帖 子:5
专家分:0
注 册:2010-7-17
收藏
得分:0 
谢谢了,我想建一个工作指针,就是上面的s开辟新的节点啊,你那个如果链表很长,就要定义许多指针了,指向不同的节点。帮忙再解一下。
2010-08-09 10:52
快速回复:帮忙看看链表怎么只输出一个数,且有警告
数据加载中...
 
   



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

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