上一页 1 ··· 9 10 11 12 13 14 15 下一页
摘要: #include#include#include#includeusing namespace std;list p;int ii, jj;bool op(int x) /*这个很重要*/{ return x > n) { ... 阅读全文
posted @ 2019-05-18 10:50 DIY-Z 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 目录stringstring的常见构造函数string与char *(或const char*)之间的转换string 转化为const char*const char* 转化为string string 转化为 char*char* 转化为stri... 阅读全文
posted @ 2019-05-18 00:03 DIY-Z 阅读(197) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;templateclass Data{ private: T value; public: Data():value(0... 阅读全文
posted @ 2019-05-17 22:48 DIY-Z 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 题目链接#include#includeusing namespace std;int main(){ int n; cin >> n; ... 阅读全文
posted @ 2019-05-17 00:30 DIY-Z 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 生成1~n的排列:#includeusing namespace std;void print_permutation(int n, int *A, int cur) /*n代表这个排列中的元素数*/{ if(cur == n) ... 阅读全文
posted @ 2019-05-14 19:38 DIY-Z 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 关于构造函数的调用次序,见下列代码 当然了,首先调用基类的构造函数是不容置疑的,不管它在哪里,记住即可,不过关于对象成员的构造函数的调用还需注意, 见 L1, L2, L3, 它们的构造函数的调用次序与它们在此的相对次序有关,如类A排在第一行,因此先调用关于它的对象,这里还应再注意一点,尽管先定义了 阅读全文
posted @ 2019-05-12 21:15 DIY-Z 阅读(269) 评论(0) 推荐(0) 编辑
摘要: ACM算法模板 · 一些常用的算法模板-模板合集(打比赛专用) 阅读全文
posted @ 2019-05-11 11:37 DIY-Z 阅读(379) 评论(0) 推荐(0) 编辑
摘要: [C++::STL]之set的用法c++ set求差集,并集,交集 阅读全文
posted @ 2019-05-09 11:56 DIY-Z 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 转载:sort对二维字符数组排序 阅读全文
posted @ 2019-05-07 13:44 DIY-Z 阅读(444) 评论(0) 推荐(0) 编辑
摘要: int ans = 0;void merges(int *a, int lef, int righ){ if(lef == righ) /*边界*/ return ; int mid = lef + (righ -... 阅读全文
posted @ 2019-05-06 21:29 DIY-Z 阅读(342) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 下一页