摘要:
get/set方法 Alt+insert 如果用鼠标点击都只能选择一个,按住Shift键,然后用鼠标选择全部 Ctrl+O 方法重写 阅读全文
posted @ 2019-01-27 11:28
zssd
阅读(125)
评论(0)
推荐(0)
|
摘要:
get/set方法 Alt+insert 如果用鼠标点击都只能选择一个,按住Shift键,然后用鼠标选择全部 Ctrl+O 方法重写 阅读全文
posted @ 2019-01-27 11:28
zssd
阅读(125)
评论(0)
推荐(0)
摘要:
一位大佬的总结 出处 https://blog.csdn.net/weiyuefei/article/details/79316653 阅读全文
posted @ 2019-01-13 21:40
zssd
阅读(130)
评论(0)
推荐(0)
摘要:
#include<stdio.h>#include<string.h>char map[25][25];int n, m, num;int dr[4] = { -1,1,0,0 };int dc[4] = { 0,0,1,-1 }; bool path(int r, int c) { if (r > 阅读全文
posted @ 2019-01-12 22:30
zssd
阅读(111)
评论(0)
推荐(0)
摘要:
#include<iostream> #include<cstdio> #include<cstring> #include<queue> #define p 100010 using namespace std; int visit[p]; int n,k; struct Catch{ int s 阅读全文
posted @ 2019-01-12 22:28
zssd
阅读(162)
评论(0)
推荐(0)
摘要:
阅读全文
posted @ 2019-01-09 18:43
zssd
阅读(1885)
评论(0)
推荐(0)
摘要:
break用于完全结束一个循环,跳出循环体 continue的功能和break有点类似,区别是continue只是中止本次循环,接着开始下一次循环。而break则是完全中止循环。 return关键字并不是专门用于跳出循环的,return的功能是结束一个方法。 一旦在循环体内执行到一个return语句 阅读全文
posted @ 2019-01-07 15:09
zssd
阅读(115)
评论(0)
推荐(0)
|