Every email consists of a local name and a domain name, separated by the @ sign. For example, in , is the local name, and is the domain name. Besides ...
分类:
其他好文 时间:
2020-01-27 09:33:24
阅读次数:
73
功能: 根据不同数据类型进行排序 格式: sort [OPTION]... [FILE]... sort [OPTION]... --files0-from=F 参数: -b, --ignore-leading-blanks 忽略每行开始前的空格 ignore leading blanks -d, ...
分类:
编程语言 时间:
2020-01-26 13:13:27
阅读次数:
116
索引类型:Unique(唯一索引,一般为主键),Normal(一般索引,普通字段,可做组合索引),索引方法:BTREE 1.选择唯一性索引 唯一性索引的值是唯一的,可以更快速的通过该索引来确定某条记录。例如,学生表中学号是具有唯一性的字段。为该字段建立唯一性索引可以很快的确定某个学生的信息。如果使用 ...
分类:
数据库 时间:
2020-01-24 00:33:37
阅读次数:
126
「Violet」蒲公英 "传送门" 区间众数,强制在线。 分块经典题。 像 "这题" 一样预处理,然后就直接爆搞,复杂度 $O(n \sqrt n)$ 参考代码: ...
分类:
其他好文 时间:
2020-01-24 00:28:06
阅读次数:
88
「CQOI2016」不同的最小割 "传送门" 建出最小割树,把每一个点对的最小割抠出来 $\text{unique}$ 一下就好了。 参考代码: ...
分类:
其他好文 时间:
2020-01-24 00:10:13
阅读次数:
53
本篇内容包括,tf.norm(张量的范数)、tf.reduce_min/max(最大最小值)、tf.argmax/argmin(最大最小值的位置)、tf.equal(张量的比较)、tf.unique(张量的独特值) 1.tf.norm · 二范数 ||x||2 = (Σxk2)1/2 · 一范数 | ...
分类:
其他好文 时间:
2020-01-23 00:14:09
阅读次数:
122
$code :$ 借助$s$数组来离散化$a$数组 ...
分类:
其他好文 时间:
2020-01-22 21:32:21
阅读次数:
66
1. 创建二维表 -- create table 表名 ( -- 字段名1 字段类型 [not null] [primary key] , -- 字段名2 字段类型 check(条件判断), -- 字段名3 字段类型 , -- ... -- constraint 约束名 primary key(字段 ...
分类:
数据库 时间:
2020-01-22 16:13:50
阅读次数:
164
Flask框架 1. 路由和视图 1.1. Flask简介 1.2. 虚拟环境 1.3. HelloWorld 1.4. 相关配置参数 1.5. 路由信息 1.6. 响应信息 1.7. 转换器 1.8. abort,errorhandler 1.9. 请求钩子 1.10. request请求参数 2 ...
分类:
数据库 时间:
2020-01-22 13:00:57
阅读次数:
116
因为工作关系,需要详细掌握Oracle系统中的几种约束 当前user中有哪些约束 SELECT distinct constraint_type FROM USER_CONSTRAINTS; --C: Check ,On Table --O: Read Only, On View --P: Prim ...
分类:
其他好文 时间:
2020-01-21 18:29:47
阅读次数:
93