记录一下这几天刷的后缀自动机的题目 "Glass Beads UVA 719" 求 $S$ 循环同构的最小表示 将 $S$ copy 成 $SS$ 后建出后缀自动机,按字典序走 $n$ 步即可 代码 "Longest Common Substring SPOJ LCS" 求两个串的最长公共子串 对第 ...
分类:
其他好文 时间:
2020-03-17 19:45:45
阅读次数:
76
Nmap的基本参数 O 判断是什么系统 sV 版本检测 比如扫出了 SSH端口 然后爆出他的版本号 A 就是 O和 sV的结果 p 扫描指定的端口 p 1 65535或 p 80,8080,1433 v 输出详细信息 T4 扫描速度(1 5) T是正常的 sS 二次握手 exclude 排除主机或网 ...
分类:
其他好文 时间:
2020-03-17 08:22:56
阅读次数:
68
精准切割 裁剪前 10 秒: ffmpeg -ss 0:0 -t 0:10 -i input.mov output.mp4 -ss 开始时间-t 持续时间 裁剪最后 10 秒: ffmpeg -sseof -0:10 -i input.mov output.mp4 -sseof 相对于文件末尾的开始 ...
分类:
其他好文 时间:
2020-03-15 22:03:26
阅读次数:
61
C++随手记--字符串转数字 int,float,double 同理。 #include <sstream> #include <string> int main(){ double num; string str = "123.45"; stringstream ss; ss << str; ss ...
分类:
编程语言 时间:
2020-03-13 20:29:28
阅读次数:
69
You want to perform the combo on your opponent in one popular fighting game. The combo is the string ss consisting of nn lowercase Latin letters. To p ...
分类:
其他好文 时间:
2020-03-13 19:02:07
阅读次数:
72
查询该时间段 这个表的状态select * from 表名 as of timestamp to_timestamp('2018-10-12 9:30:00', 'yyyy-mm-dd hh24:mi:ss'); 开启闪回alter table 表名 enable row movement; 把表的 ...
分类:
数据库 时间:
2020-03-13 18:46:42
阅读次数:
76
1 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 2 Date now = new Date();//当前日期 3 String currentDate = df.format(now); 4 String mi ...
分类:
其他好文 时间:
2020-03-10 15:56:07
阅读次数:
500
1 日期格式化: 1 moment().format('MMMM Do YYYY, h:mm:ss a'); // 三月 7日 2020, 11:59:47 中午 2 3 moment().format('dddd'); // 星期六 4 5 moment().format("MMM Do YY") ...
分类:
其他好文 时间:
2020-03-07 12:56:20
阅读次数:
148
1 SELECT to_timestamp('2020-02-27 12:12:12','yyyy-MM-dd hh24:mi:ss') ; 2 SELECT to_date('2020-02-27 12:12:12','yyyy-MM-dd hh24:mi:ss') ; to_timestamp返 ...
分类:
数据库 时间:
2020-03-07 00:09:09
阅读次数:
143
# 数字转字符串 1 int a; 2 string res; 3 stringstream ss; //定义流ss 4 ss << a; //将数字a转化成流ss 5 ss >> res; //将流ss转化成字符串 6 return 0; # 字符串转数字 1 double a; 2 string ...
分类:
其他好文 时间:
2020-03-06 00:55:46
阅读次数:
82