- 博客(6)
- 收藏
- 关注
原创 C++ Big five(构造函数,析构函数,拷贝构造函数,复制赋值运算符,移动构造函数)
Cpp中的其中构造函数和析构函数通常是必须的,其余三个应根据需求实现。
2024-07-04 01:41:02 761
原创 在Word里插入好看的代码
CodeInWord|在word中优雅展现的代码|代码高亮|word中插入代码|代码格式化在线生成可以在word中高亮的代码,支持各类主流语言,代码美化,代码高亮。http://www.codeinword.com/ 分享一个网站,可以把代码在word里更好看易读的呈现出来。 粘贴代码到左侧栏--》选择语言--》点击高亮--》复制右侧栏--》粘贴至Word 在Word中删行,下面的行也可以自动对齐! ...
2022-04-20 16:46:24 1108 2
原创 棋盘问题
#include <iostream> #include <cstdio> #include <cstring> using namespace std; int n, k, ans; char map[20][20]; int vis[20]; void dfs(int x,int y) { if(y==0) {ans++; return;} ...
2018-07-19 17:14:18 155
原创 poj2362 squre
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; int a[50],vis[50]; int n,ave; int dfs(int x,int pos,int len) { if(x==3) r...
2018-07-19 11:16:28 186
转载 Status Runtime Error(ACCESS_VIOLATION)
runtime error (运行时错误)就是程序运行到一半,程序就崩溃了。 比如说: ①除以零 ②数组越界:int a[3]; a[10000000]=10; ③指针越界:int * p; p=(int *)malloc(5 * sizeof(int)); *(p+1000000)=10; ④使用已经释放的空间:int * p; p=(int *)malloc(5 * sizeof(int));...
2018-07-18 12:10:32 1040
转载 油田 Uva 572
#include <iostream> #include <cstdio> #include <cstring> using namespace std; const int maxn=100; char pic[maxn][maxn]; int m,n,idx[maxn][maxn]; void dfs(int a,int b,int id) { if...
2018-07-18 11:00:45 218
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人