如何处理链表-C++程序设计
二、如何处理链表struct student { int num; float score; struct student *next; } ; #define STU struct student STU { int num; float score; STU *next; } ;链表结点的结构:指向同一结构体类型的指针变量1、建立链表
8.66MB
文件大小:
评论区