https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-0.htmlMySQL8.0.0The current maximum auto-increment counter value is now written to the redo l ...
分类:
数据库 时间:
2020-11-08 16:51:42
阅读次数:
24
delphi TStringList 用法详解 //TStringList 常用方法与属性 :var List: TStringList; i: Integer;begin List := TStringList.Create; List.Add('Strings1'); {添加} List.Add ...
E Nothing is eternal in the world, Kostya understood it on the 7-th of January when he saw partially dead four-color garland. Now he has a goal to rep ...
分类:
其他好文 时间:
2020-11-02 10:34:31
阅读次数:
23
5556. 可以到达的最远建筑 刚开始写得时候感觉像贪心,但没分析好不敢写,自己写了个记忆化搜索,后来看讲解把贪心法给补上 记忆化搜索 const int MAXN = 1e5+50; class Solution { public: int dp[MAXN]; int dfs(int now, v ...
分类:
其他好文 时间:
2020-11-01 22:29:28
阅读次数:
84
#include <stdio.h> #include <math.h> int reverse(int data) { //请在此填写代码,实现将参数data的值反转,并返回的功能 /* begin */ int ans=0,cnt=0,a[1000],flag=0; if(data<0){ fl ...
分类:
其他好文 时间:
2020-11-01 10:14:19
阅读次数:
13
重启命令: 1、reboot 2、shutdown -r now 立即重启 3、shutdown -r 5 5分钟后自动重启(时间可以自己设置) 4、shutdown -r 10:30 在时间为10:30时候重启(时间可以自己设置) 关机命令: 1、init 0 2、halt 3、poweroff ...
分类:
系统相关 时间:
2020-10-31 01:43:02
阅读次数:
30
1、CONCAT(A, B) – 连接两个字符串值以创建单个字符串输出。通常用于将两个 或多个字段合并为一个字段。 2、FORMAT(X, D)- 格式化数字 X 到 D 有效数字。 3、CURRDATE(), CURRTIME()- 返回当前日期或时间。 4、NOW() – 将当前日期和时间作为一 ...
分类:
数据库 时间:
2020-10-30 12:00:27
阅读次数:
25
「I used to question who I was, but now I see, the answer's in your eyes. 」 星月皎洁,明河在天,四无人声,声在树间。 又似是一夜间,那树间的风,吹黄了叶,吹来了秋。 篮球场边又堆起了片片杨树叶,踩在上面脆脆滑滑的;最爱的那条石 ...
分类:
其他好文 时间:
2020-10-26 11:41:29
阅读次数:
27
ARC106 选做 ARC106D [* easy] 给定长度为 \(N\) 的数列 \(A\),对于 \(X=1,2...K\) 计算: \(\sum_i\sum_j (A_i+A_j)^X[i<j]\) \(N\le 2\times 10^5,K\le 300\) Solution 考虑二项式定 ...
分类:
其他好文 时间:
2020-10-26 11:05:55
阅读次数:
24