问题背景: 客户数据库环境遭遇断电宕机,启动数据库失败,协助查看。 报错如下: 1 Total System Global Area 6442450944 bytes 2 Fixed Size 8807168 bytes 3 Variable Size 1375735040 bytes 4 Data ...
分类:
其他好文 时间:
2020-06-11 21:32:12
阅读次数:
51
题目链接:https://codeforces.com/problemset/problem/1365/E 题意 有 $n$ 个元素,定义大小为 $k$ 的集合值为 $\sum2^i$,其中,若集合内至少有 $max(1, k - 2)$ 个数二进制下第 $i$ 位为 $1$,则第 $i$ 位有效, ...
分类:
其他好文 时间:
2020-06-11 16:10:31
阅读次数:
84
传送门 A Sequence with Digits standard input/output 1 s, 256 MB Submit Add to favourites x14744 a的通项中一定会有一个出现数字0, 自此之后的a不变化, 判断一下即可 最长的是 a1 = 54, 28217才出 ...
分类:
其他好文 时间:
2020-06-11 00:27:36
阅读次数:
60
如果想更新一个序列的start with值,是不可以直接更改的,会报错: SQL> alter sequence seq_xxrs start with 1000; alter sequence seq_xxrs start with 1000 ORA-02283: 无法变更启动序列号 那么,如何增 ...
分类:
其他好文 时间:
2020-06-09 12:41:33
阅读次数:
165
gap> calT(27);41~4:G27_1=C27,N0=1,2,6,18,5~24:G27_2=C9 x C3,N0=1,8,18,0,25~59:G27_5=C3 x C3 x C3,N0=1,26,0,0, D:\MathTool\gaptool>RpppRppp(1,2)=R8_1,R ...
分类:
其他好文 时间:
2020-06-08 00:38:21
阅读次数:
47
Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop o ...
分类:
其他好文 时间:
2020-06-08 00:29:09
阅读次数:
53
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'. The wheels can rota ...
分类:
其他好文 时间:
2020-06-07 13:04:24
阅读次数:
50
地址 https://leetcode-cn.com/problems/longest-consecutive-sequence/ 给定一个未排序的整数数组,找出最长连续序列的长度。 要求算法的时间复杂度为 O(n)。 示例: 输入: [100, 4, 200, 1, 3, 2] 输出: 4 解释: ...
分类:
其他好文 时间:
2020-06-06 21:23:22
阅读次数:
54
题意We give the following inductive definition of a “regular brackets” sequence: the empty sequence is a regular brackets sequence,if s is a regular bra ...
分类:
其他好文 时间:
2020-06-06 11:21:38
阅读次数:
55
TCP握手协议 在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接.第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认; SYN:同步序列编号(Synchronize Sequence Numbers)第二次握手:服 ...
分类:
其他好文 时间:
2020-06-06 11:17:49
阅读次数:
50