题意 description You are given an array a1,a2,...,an(?i∈[1,n],1≤ai≤n). Initially, each element of the array is unique . Moreover, there are m instructio ...
分类:
其他好文 时间:
2019-08-28 11:28:02
阅读次数:
78
(大量内容来自百度) 离散化,把无限空间中有限的个体映射到有限的空间中去,以此提高算法的时空效率。 通俗的说,离散化是在不改变数据相对大小的条件下,对数据进行相应的缩小。例如: 原数据:1,999,100000,15;处理后:1,3,4,2; 原数据:{100,200},{20,50000},{1, ...
分类:
编程语言 时间:
2019-08-28 11:03:23
阅读次数:
114
Easy In a array A of size 2N, there are N+1 unique elements, and exactly one of these elements is repeated N times. Return the element repeated N time ...
分类:
其他好文 时间:
2019-08-27 23:08:11
阅读次数:
82
Oracle DG 搭建1、 环境 OS IP hostname db_name DB_UNIQUE_NAME主库 RHEL 5.4 192.168.12.20 edgzrip1.oracle.com PROD1 PROD1备库 RHEL 5.4 192.168.12.30 edgzrip2.ora ...
分类:
数据库 时间:
2019-08-26 23:11:05
阅读次数:
178
N757JE0KCT-eyJsaWNlbnNlSWQiOiJONzU3SkUwS0NUIiwibGljZW5zZWVOYW1lIjoid3UgYW5qdW4iLCJhc3NpZ25lZU5hbWUiOiIiLCJhc3NpZ25lZUVtYWlsIjoiIiwibGljZW5zZVJlc3RyaWN ...
分类:
其他好文 时间:
2019-08-25 00:40:47
阅读次数:
614
知识回顾:数据都是存在硬盘上的,那查询数据不可避免的需要进行IO操作 *索引在MySQL中也叫做“键”,是存储引擎用于快速找到记录的一种数据结构。* * primary key* unique key 快 加 约束* index key 只有快 foreign key 是建表与表之间的关系 注意fo ...
分类:
其他好文 时间:
2019-08-24 18:18:25
阅读次数:
88
"MySQL索引类型" 一、简介 MySQL目前主要有以下几种索引类型: 1.普通索引 2.唯一索引 3.主键索引 4.组合索引 5.全文索引 二、语句 CREATE TABLE table_name[col_name data type] "unique|fulltext][index|key][ ...
分类:
数据库 时间:
2019-08-24 17:10:21
阅读次数:
109
array Time Limit: 1500ms Memory Limit: 256M Description You are given an array . Initially, each element of the array is unique.Moreover, there are in ...
分类:
其他好文 时间:
2019-08-24 15:29:31
阅读次数:
66
大水题,还提高+/省选- 先离散一下,然后getfa和combine就行 部分代码: 1 for(int i=1;i<=n;++i) 2 { 3 a[i].x=read(); a[i].y=read(); a[i].e=read(); 4 ls[++cnt]=a[i].x; 5 ls[++cnt]= ...
分类:
其他好文 时间:
2019-08-22 23:46:14
阅读次数:
78
存储引擎 primary key也是innodb引擎查询必备的索引。 Innodb 目前5.1之后MySQL版本默认的存储引擎,支持事务,行锁,外键,因此数据更安全 innodb在建表的时候会产生两个文件:一个是表结构文件,一个是存储数据文件 myIsam 5.1版本之前的MySQL的默认存储引擎, ...
分类:
数据库 时间:
2019-08-22 22:12:27
阅读次数:
113