实验三 双链表实现学生成绩处理

代码实现: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(
相关文章
相关标签/搜索