上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 112 下一页
摘要: #include <iostream> #include <set> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } }; in 阅读全文
posted @ 2022-07-28 18:43 thomas_blog 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <set> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } }; in 阅读全文
posted @ 2022-07-28 16:34 thomas_blog 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> #include <list> #include <algorithm> using namespace std; template<class T> void myPrint(const T &data) { typena 阅读全文
posted @ 2022-07-27 23:49 thomas_blog 阅读(51) 评论(0) 推荐(0) 编辑
摘要: vector对头部的插入删除效率较低,数据量越大,效率越低 deque相对而言,对头部插入删除速度比vector快 vector访问元素时,比deque快,这和两者内部实现有关 阅读全文
posted @ 2022-07-27 21:32 thomas_blog 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> using namespace std; #define NUM 10000 int main() { vector<int> v; int *p = NULL; int num = 0; for(int i = 0; i 阅读全文
posted @ 2022-07-27 20:43 thomas_blog 阅读(69) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> #include <algorithm> using namespace std; class Print { public: void operator()(int i) { cout << i << endl; } }; 阅读全文
posted @ 2022-07-27 17:45 thomas_blog 阅读(285) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> #include <algorithm> using namespace std; class OpClass { public: void operator()(int i) { cout << i << endl; } 阅读全文
posted @ 2022-07-27 16:56 thomas_blog 阅读(17) 评论(0) 推荐(0) 编辑
摘要: //template.hpp #include <iostream> template<class typeName> class Person { public: Person(typeName name); void show(); protected: typeName m_name; }; 阅读全文
posted @ 2022-07-22 08:14 thomas_blog 阅读(64) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> template<class typeName> class Person { public: Person(typeName name); void show(); protected: typeName m_name; }; template<class 阅读全文
posted @ 2022-07-21 08:19 thomas_blog 阅读(33) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <typeinfo> template<class typeName> class Person { public: Person() { std::cout << "typeName数据类型 " << typeid(typeName).na 阅读全文
posted @ 2022-07-21 07:53 thomas_blog 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 112 下一页