QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1524|回复: 7

菜鸟图解简单链表(表打我哈)

[复制链接]
发表于 2004-3-10 14:42:32 | 显示全部楼层 |阅读模式
[code:1]
#include <stdio.h>

struct student
{
    long num;
    float score;
    struct student *next;
};

int main()
{
   struct student a, b, c, *next, *p;
   
   a.num = 99101;  a.score = 89.5;
   b.num = 99103;  b.score = 90;
   c.num = 99107;   c.score = 85;
   
   head = &a;
   a.next = &b;
   b.next = &c;
   c.next = NULL;
   p = head;
   
   do
       {
          printf("%ld %5.1f\n", p ->num, p ->score);
          p = p -> next;
       }
    while ( p !=  NULL);
}
[/code:1]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
发表于 2004-3-10 22:37:07 | 显示全部楼层
看起来很美~
回复

使用道具 举报

发表于 2004-3-12 18:15:07 | 显示全部楼层

不错不错~
回复

使用道具 举报

发表于 2004-3-15 07:42:48 | 显示全部楼层
图做得不错,万一哪天我去讲课啦,你给我作课件吧?

不过老实说,我觉得你的代码比如图更容易让人明白
回复

使用道具 举报

发表于 2004-3-15 12:17:54 | 显示全部楼层
[quote:e3148cd5c9="蝴蝶夜雪"]
不过老实说,我觉得你的代码比如图更容易让人明白 [/quote]

你是夸人家的代码写得好还是……   
回复

使用道具 举报

发表于 2004-3-15 12:37:51 | 显示全部楼层
呵呵,太感谢你了,来。啵一口:)
回复

使用道具 举报

发表于 2004-3-16 06:37:40 | 显示全部楼层

居然……还是被我发现有些小错误……楼主表K我啊~
[code:1]
#include <stdio.h>
{
    long num;
    float score;
    struct student *next;
};
[/code:1]
这个……是不是少了一个struct student???
回复

使用道具 举报

 楼主| 发表于 2004-3-16 08:32:01 | 显示全部楼层
[quote:1230a358ae="默难"]
居然……还是被我发现有些小错误……楼主表K我啊~
[code:1]
#include <stdio.h>
{
    long num;
    float score;
    struct student *next;
};
[/code:1]
这个……是不是少了一个struct student???[/quote]

    
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-8 20:05 , Processed in 0.051709 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表