shutdown是最常用也是最安全的关机和重启命令,它会在关机之前调用fsck检查磁盘,其中-h和-r是最常用的参数: -h:停止系统服务并关机 -r: 停止系统服务后重启 下面看几个例子: shutdown -h now --立即关机 shutdown -h 10:53 --到10:53关机,如果 ...
分类:
系统相关 时间:
2020-07-12 18:50:07
阅读次数:
79
##题面 Problem Description Lele now is thinking about a simple function f(x). If x < 10 f(x) = x. If x >= 10 f(x) = a0 * f(x-1) + a1 * f(x-2) + a2 * f(x ...
分类:
其他好文 时间:
2020-07-12 16:40:31
阅读次数:
59
unrated 呜呜呜 #A 直接全输出1完事 #include <bits/stdc++.h> #define all(n) (n).begin(), (n).end() #define se second #define fi first #define pb push_back #define ...
分类:
其他好文 时间:
2020-07-12 12:42:52
阅读次数:
57
Difference between Dangling Pointer and Wild Pointer? A dangling pointer is a pointer that used to point to a valid address but now no longer does. Th ...
分类:
其他好文 时间:
2020-07-12 01:03:42
阅读次数:
90
##题意 传送门 一个无限长数轴,初始数轴上每个坐标上的数都是$0$, 共$n$个操作,每个操作将数轴某一位置上的数加$c$, $m$个询问,询问区间$[ l , r ]$上所有数的和 ###数据范围 \(\begin{array}{l}-10^{9} \leq x \leq 10^{9} \\ 1 ...
分类:
其他好文 时间:
2020-07-12 00:53:14
阅读次数:
85
以下介绍几种方法,可能还有好多 或者更好的,不足之处请指出谢谢。 //string 转为date 然后转为 ZonedDateTime// DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// Date now= ...
分类:
其他好文 时间:
2020-07-11 22:59:40
阅读次数:
132
Intro Yeah I know sometimes, things may not always make sense to you right now [^1] [^1]: Hailie and Laney (Eminem’s daughters) are, at this point in ...
分类:
其他好文 时间:
2020-07-11 22:57:33
阅读次数:
126
触发器:与表有关的数据库对象,在满足定义条件时触发,并执行触发器中定义的语句集合。 触发器的特性: 1、有begin end体,begin end;之间的语句可以写的简单或者复杂 2、什么条件会触发:I、D、U 3、什么时候触发:在增删改前或者后 4、触发频率:针对每一行执行 5、触发器定义在表上, ...
分类:
数据库 时间:
2020-07-11 19:30:39
阅读次数:
52
题目叙述 给定一个数组 \(c\) 和一个数 \(s\) ,求满足以下条件的二叉树数量: 每个节点有个权值,权值为 \(c\) 中的一个数 所有节点权值和为 \(s\) 题解 首先设 \(f_i\) 表示 \(i\) 个结点组成的这样的树有 \(f_i\) 个,\(g_i\) 表示数 \(i\) 是 ...
分类:
其他好文 时间:
2020-07-11 19:08:24
阅读次数:
75
c++顺序容器常用知识总结: 目录 一.定义和初始化 有关于unsingned int 与 size_t的有关区分 二.常用操作 1.begin和end 2.容器添加元素操作 3.容器大小的操作 4.访问容器元素的操作 5.删除容器元素的操作 6.容器的赋值与swap操作 正文 容器是一种容纳特定类 ...
分类:
编程语言 时间:
2020-07-11 19:05:21
阅读次数:
72