實驗三 單鏈表實現學生成績管理

代碼實現: #include<iostream>using namespace std; struct node { float data; node* next; }; class student { node* first,*p,*q; public: student(); student(float a[],int n);       //建立n個元素的單鏈表 ~student(); int
相關文章
相關標籤/搜索