實驗三 雙鏈表實現學生成績處理

代碼實現:node #include<iostream> using namespace std; struct node  { float data; node *prior,*next; }; class student { node* first; public: student(); student(float a[],int n);   //  ~student(); int leng(
相關文章
相關標籤/搜索