《數據結構》進行曲 之 單鏈表實現學生信息管理系統

#include<stdio.h> #include<iostream> using namespace std; #define MAX 100 typedef struct STU{ char name[20]; char sno[20]; int age; float score; }Student; typedef struct LNode{ Student data;
相關文章
相關標籤/搜索