| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1054 人关注过本帖
标题:创建一个单链表,编译不能通过,那位兄弟帮忙看下找出错误,谢谢!
取消只看楼主 加入收藏
minicat
Rank: 2
等 级:论坛游民
帖 子:9
专家分:10
注 册:2010-4-12
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
创建一个单链表,编译不能通过,那位兄弟帮忙看下找出错误,谢谢!
//创建一个单链表
#include<iostream.h>

struct student
{
  long number;
  float score;
  student *next;
};//定义一结构类型

struct *head;//链首指针

struct *creat()
{
  student *ps;//创建的节点指针
  student *pend;//链尾指针,用于在其后面插入节点
  ps=new student;//新建一个结构类型结点,准备插入链表
  cin>>ps->number>>ps->score;//给新建结点赋值
  head=NULL;
  pend=ps;

  while(ps->number!=0)
  {
    if(head==NULL)
        head=ps;
    else
        pend->next=ps;
    pend=ps;
    ps=new student;
    cin>>ps->number>>ps->score;
  }
  pend->next=NULL;
  delete ps;
  return(head);
}

void showlist(student *head)
{
  cout<<"now the items of list are\n";
  while(head)
  {
    cout<<head->number<<","<<head->score<<endl;
    head=head->next;
  }

}

void main()
{
  showlist(creat());
}
搜索更多相关主题的帖子: 单链 兄弟 编译 
2010-04-12 17:48
minicat
Rank: 2
等 级:论坛游民
帖 子:9
专家分:10
注 册:2010-4-12
收藏
得分:0 
高级编程交流群:111679647
欢迎各位一起来交流。
2010-04-12 17:50
minicat
Rank: 2
等 级:论坛游民
帖 子:9
专家分:10
注 册:2010-4-12
收藏
得分:0 
这是钱能C++书上的一个例题哦
2010-04-13 12:13
快速回复:创建一个单链表,编译不能通过,那位兄弟帮忙看下找出错误,谢谢!
数据加载中...
 
   



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

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