随笔分类 - C++
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } };
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Person { public: Person(string name, int age): name(name), age(a
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Person { public: Person(string name, int age): name(name), age(a
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } };
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } };
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Person { public: Person(string name, int age): name(name), age(a
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Person { public: Person(string name, int age): name(name), age(a
阅读全文
摘要:transform(sourceBeg,sourceEnd,destBeg,op) sourceBeg:源容器开始迭代器 sourceEnd:源容器结束迭代器 destBeg:目标容器开始迭代器 op:函数或者函数对象 #include <iostream> #include <vector> #i
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> #include <functional> using namespace std; class Print { public: void operator()(bool b) {
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> #include <functional> using namespace std; class Print { public: void operator()(int i) { c
阅读全文
摘要:#include <iostream> #include <functional> using namespace std; int main() { plus<int> p; cout << p(10, 20) << endl; return 0; } $ ./a.out 30
阅读全文
摘要:#include <iostream> #include <functional> using namespace std; int main() { negate<int> n; cout << n(10) << endl; return 0; } $ ./a.out -10
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } };
阅读全文
摘要:#include <iostream> #include <vector> #include <algorithm> using namespace std; class Find { public: bool operator()(int i) { return i < 5; } }; int m
阅读全文
摘要:#include <iostream> #include <map> using namespace std; int main() { map<int, string> m; m.insert(pair<int, string>(1, "furong")); m.insert(pair<int,
阅读全文
摘要:#include <iostream> #include <set> #include <algorithm> using namespace std; class Person { public: Person(string name, int age): name(name), age(age)
阅读全文
摘要:#include <iostream> #include <set> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } }; cl
阅读全文
摘要:#include <iostream> using namespace std; int main() { pair<string, int> p1("furong", 10); cout << "姓名 " << p1.first << endl; cout << "年龄 " << p1.secon
阅读全文
摘要:#include <iostream> #include <set> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } }; in
阅读全文
摘要:#include <iostream> #include <set> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } }; in
阅读全文