一、深浅拷贝 1.浅拷贝,只会拷贝第一层 >>> [1, 'ss', '小可爱'] >>> [[1, 3], 'ss', '小可爱'][[1, 3], 'ss', '小可爱'] 2.深拷贝 = 克隆一份 >>> 二、集合: 把不同的元素集合到一起,组成集合的成员不可重复如果有重复的元素保留一个 主要 ...
分类:
编程语言 时间:
2019-01-27 19:14:10
阅读次数:
201
修改主机名永久生效:vim/etc/udev/rules.d/70-persistent-net.rules文件实验:配置centos6系统的网络1、hostname命令:修改主机名,临时有效**【例1】修改主机名为node1[root@magedu~]#hostnamenode1验证临时生效:[root@magedu~]#execbash2、通过配置文件修改主机名,重启永久生效**【例2】编辑文
分类:
Web程序 时间:
2019-01-27 14:41:37
阅读次数:
184
#include using namespace std; struct node { int r; node *next[26]; node() { r=0; memset(next,0,sizeof(next)); } }; node root; int build_trie(string ss... ...
分类:
其他好文 时间:
2019-01-26 15:56:36
阅读次数:
175
如果用pacman -S boost-libs安装,只能得到一堆.so .a文件,并没有头文件 用pacman -Ss boost 查找一下 [root@dell_xps_13 dean]# pacman -Ss boost extra/boost 1.60.0-4 Free peer-review ...
分类:
系统相关 时间:
2019-01-25 21:43:06
阅读次数:
303
1.查看npm的config npm config ls 2.设置代理 npm config set proxy http://127.0.0.1:1080(SS) npm config set https-proxy https://127.0.0.1:1080(SS) 删除代理 npm conf ...
分类:
其他好文 时间:
2019-01-25 11:50:38
阅读次数:
194
出现的问题 我全局配置的时间格式是:yyyy-MM-dd HH:mm:ss @JSONField注解配置的时间格式是:yyyy-MM-dd 最终的返回结果是:yyyy-MM-dd HH:mm:ss 问题:为啥不是以注解定义的时间格式为主呢?先说答案,后面再分析: FastJson的全局配置日期格式会 ...
分类:
Web程序 时间:
2019-01-24 01:17:52
阅读次数:
609
Two people are playing a game with a string ss, consisting of lowercase latin letters. On a player's turn, he should choose two consecutive equal lett ...
分类:
其他好文 时间:
2019-01-23 10:39:52
阅读次数:
195
logger.info("接收的 shiftStartTime:" + shiftStartTime); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = new Date(Long.par ...
分类:
编程语言 时间:
2019-01-21 22:53:53
阅读次数:
173
#include const int maxn=1e6+10; using namespace std; int p[maxn*2+10]; string manacher(string ss) { string tt="$#"; for(int i=0;ii) p[i]=min(p[2*id-i]... ...
分类:
其他好文 时间:
2019-01-19 11:18:45
阅读次数:
134
基本上是一个斜率优化裸题了 cpp include using namespace std; typedef long long ll; const int maxn = 1e6+10; ll s[maxn],x[maxn],n,a,b,c,f[maxn],ss[maxn]; int q[maxn] ...