C语言及程序设计进阶例程-17 认识链表

贺老师教学链接  C语言及程序设计进阶 本课讲解


例 建立并输出一个简单链表

#include <stdio.h>
struct Student
{
    int num;
    float score;
    struct Student *next;
};
int main( )
{
    struct Student a,b,c,*head,*p;
    a. num=31001;
    a.score=89.5;
    b. num=31003;
    b.score=90;
    c. num=31007;
    c.score=85;
    head=&a;
    a.next=&b;
    b.next=&c;
    c.next=NULL;
    p=head;
    do
    {
        printf("%d  %.1f\n", p->num, p->score);
        p=p->next;
    }
    while(p!=NULL);
    return 0;
}



上一篇:异构加速平台Heterogeneity-Aware Lowering and Optimization (HALO)简介


下一篇:使用关键字创建具有局部作用域的JavaScript变量