求大神解答c++定义一个Student类,再创建一个Studentlist类
Student类,包含姓名,性别,年龄,学号,成绩等数据成员,Studentlist类,可以实现对对象的插入,删除,查找,显示的功能。最好原创,绝对采纳,谢谢。...
Student类,包含姓名,性别,年龄,学号,成绩等数据成员,Studentlist类,可以实现对对象的插入,删除,查找,显示的功能。最好原创,绝对采纳,谢谢。
展开
推荐于2017-10-01
展开全部
建议你使用标准库中的 容器和迭代器:
#include<list>
#include <algorithm>
class Student
{
public:
string name;
//--------
};
//可以直接调用容器和迭代器 对应的函数实现操作。
int main()
{
list<Student> Studentlist//空容器
Student s;
s.name = "Tom";
Studentlist.insert(Studentlist.begin(), s);// 插入
Studentlist.erase(slst.begin());//删除
list<Student><iterator> liter = Studentlist.begin();
//-----使用迭代器实现其他操作。
find(Studentlist.Studentlist(),Studentlist.end(),s);//查找
//---------
return 0;
}
//使用标准库,不易出错、效率高、代码简短,建议看看相关资料
#include<list>
#include <algorithm>
class Student
{
public:
string name;
//--------
};
//可以直接调用容器和迭代器 对应的函数实现操作。
int main()
{
list<Student> Studentlist//空容器
Student s;
s.name = "Tom";
Studentlist.insert(Studentlist.begin(), s);// 插入
Studentlist.erase(slst.begin());//删除
list<Student><iterator> liter = Studentlist.begin();
//-----使用迭代器实现其他操作。
find(Studentlist.Studentlist(),Studentlist.end(),s);//查找
//---------
return 0;
}
//使用标准库,不易出错、效率高、代码简短,建议看看相关资料
追问
谢谢。
谢谢。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |