摘要: class Solution { struct my_cmp{ bool operator()(const vector<int> &ite1, const vector<int> &ite2) { return ite1[0] < ite2[0]; // 升序 } } cmp; public: v 阅读全文
posted @ 2023-02-28 15:11 小超不挑食 阅读(15) 评论(0) 推荐(0) 编辑