ICode9

精准搜索请尝试: 精确搜索
  • 统计算法find_if自定义数据类型2022-07-31 13:35:07

    #include <iostream> #include <vector> #include <algorithm> using namespace std; class Person { public: Person(string name, int age): name(name), age(age) {} bool operator==(const Person &p) { return p.age ==

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有