
C++
文章平均质量分 53
dongdongdong122
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
面试题题review
面试原创 2022-12-22 22:17:46 · 819 阅读 · 0 评论 -
Educational Codeforces Round 131 (Rated for Div. 2)E
E. Text Editortime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou wanted to write a text tt consisting of mm lowercase Latin letters. But instead, you have written a text ss consisting of nn lowercase L原创 2022-07-10 16:52:25 · 199 阅读 · 0 评论 -
Educational Codeforces Round 131 (Rated for Div. 2)D
Educational Codeforces Round 131 (Rated for Div. 2)D原创 2022-07-09 13:38:42 · 300 阅读 · 0 评论 -
2021-03-02
#include<bits/stdc++.h> using namespace std; struct task_base { virtual ~task_base () {} virtual void operator()()const=0; }; template<typename F> struct task_model:public task_base { F functor_; template<typename U> .原创 2021-03-02 15:54:09 · 84 阅读 · 0 评论 -
拷贝构造函数和移动构造函数
先上代码: #include<bits/stdc++.h> using namespace std; #include<bits/stdc++.h> using namespace std; class node { public : node(int x):a(new int[x]),a_size(x) { cout<<"c...原创 2020-02-20 15:48:54 · 699 阅读 · 0 评论