摘要: #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) 编辑