摘要: 一 链表list的自定义排序 如何实现链表保存学生对象,包括名字(string)和学号(int),按照学号升序排序? //list的sort #include<bits/stdc++.h> using namespace std; class stu { public: string name; i 阅读全文
posted @ 2019-11-13 15:32 TheDa 阅读(232) 评论(0) 推荐(0) 编辑