摘要: //链表的创建并输出#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>struct student{ char name[20]; int num; struct student* pnext;};int count; 阅读全文
posted @ 2019-12-18 19:19 哈哈,呵呵,嘿嘿 阅读(159) 评论(0) 推荐(0)