dep
-
[Google] LeetCode 366 Find Leaves of Binary Tree
Given the root of a binary tree, collect a tree’s nodes as if you were doing this: C…
-
MySQl二
create table emp(id int primary keyauto_increment,name varchar(32),dep_id int unique,forei…
-
MySQl二
create table emp(id int primary keyauto_increment,name varchar(32),dep_id int unique,forei…
-
学习python-Day40
今日学习内容 约束条件 主键 单纯从约束角度上主键等价于非空唯一 not null 、unique create table t1( id int primary key, nam…
-
祖孙询问 用欧拉序列转化为 RMQ 问题
分析 N 个点,按照欧拉序给它们排序到一个数组里(数组长度是2*(N-1) + 1 = 2*N-1),并标记每个节点第一次出现的位置,st表处理欧拉序节点的最小深度。 查询(u,…
-
多表操作、pymsql、视图、触发器、事务、索引
6、多表操作 有两张表想要一起查询 select * from dep,emp; # 结果 笛卡尔积,不可用 拼表操作 对应的方法inner join 内连接left join 左…
-
约束_外键约束和约束_外键约束_级联操作
外键约束 — 创建表 CREATE TABLE emp( id int PRIMARY KEY auto_increment, name varchar(30), age IN…
-
crowdstrike 内存型无文件攻击 都是属于主动防御范畴
prevention settings里有: Force ASLR Mitigation:An address space layout randomization(ASLR) b…
-
「联合省选 2020 A」树
「联合省选 2020 A」树 按位考虑。 对于一个点来说,其儿子到其的距离是 /(dep_v-u/)。 那么其儿子做出的贡献是 /(V_v+dep_v-dep_u/)。 在模 /(…