摘要: 阅读全文
posted @ 2019-11-14 16:33 滚烫的青春 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 主席树视频:https://www.bilibili.com/video/av56485341?p=2 D. Salary Changing D. Power Products https://codeforces.com/contest/1247/problem/D Constructing Ro 阅读全文
posted @ 2019-10-10 22:15 滚烫的青春 阅读(121) 评论(0) 推荐(0) 编辑
摘要: hdu2159 阅读全文
posted @ 2020-01-11 20:59 滚烫的青春 阅读(91) 评论(0) 推荐(0) 编辑
摘要: There is a kind of balanced binary search tree named red-black tree in the data structure. It has the following 5 properties: (1) Every node is either 阅读全文
posted @ 2019-11-23 21:13 滚烫的青春 阅读(751) 评论(0) 推荐(0) 编辑
摘要: 1 all previleges语法错误 2 3 二、数据库的安全性控制 4 1、存取控制 5 ①自主存取控制(DAC)(C2级) 6 [例1] 把查询Student表权限授给用户U1 7 grant select 8 on student 9 to u1 10 [例2] 把对Student表和Co 阅读全文
posted @ 2019-11-23 17:20 滚烫的青春 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1 --外连接操作以指定表为连接主体,将主体表中不满足连接条件的元组一并输出 2 --select * from pd left/right/full join pds on pd.id = pds.dish_id 3 插入操作 4 5 1、插入元组 6 略 7 2、插入子查询结果 8 --[例4] 阅读全文
posted @ 2019-11-21 16:54 滚烫的青春 阅读(770) 评论(0) 推荐(0) 编辑
摘要: A. 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 1e5 + 10; 4 int a[maxn], b[maxn]; 5 6 int main() 7 { 8 int t; cin >> t; 9 int 阅读全文
posted @ 2019-11-17 20:56 滚烫的青春 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1 --定义模式 2 create schema s_t authorization u1 3 --删除模式 4 drop schema s_t cascade 5 --创建数据库 6 create database s_t 7 on primary 8 ( 9 name = 'stu', 10 f 阅读全文
posted @ 2019-11-17 12:27 滚烫的青春 阅读(138) 评论(0) 推荐(0) 编辑
摘要: The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i 阅读全文
posted @ 2019-11-15 17:11 滚烫的青春 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1 --游标知识点 2 --1、 在SELECT 语句中使用DISTINCT、 GROUP BY、 HAVING UNION 语句时, 游标将自动设定INSENSITIVE 选项。 3 --2、SCROLL 表明所有的提取操作(如FIRST、 LAST、 PRIOR、 NEXT、 RELATIVE、 阅读全文
posted @ 2019-11-15 09:44 滚烫的青春 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 1151 LCA in a Binary Tree (30 分) The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descenda 阅读全文
posted @ 2019-11-15 00:08 滚烫的青春 阅读(323) 评论(0) 推荐(0) 编辑