Givenn, generate all structurally uniqueBST's(binary search trees) that store values 1...n.For example,Givenn= 3, your program should return all 5 uni...
分类:
其他好文 时间:
2015-01-21 23:56:18
阅读次数:
228
1.
创建分区表
create table range_part_range(id number, deal_date date, contents varchar2(1000))
partition by range(deal_date)
(
partition p1 values less than (to_date('2015-01-21', 'yyyy-mm-dd'))...
分类:
其他好文 时间:
2015-01-21 13:30:05
阅读次数:
193
最近遇到数据预处理的一些问题,本来很简单的东西,但是却搞的烦烦的,痛定思痛,决定自己实现一下。
一、mapminmax
Process matrices by mapping row minimum and maximum values to [-1 1]
意思是将矩阵的每一行处理成[-1,1]区间,此时对于模式识别或者其他统计学来说,数据应该是每一列是一个样本,每一行是多个样本的同一维,即...
分类:
其他好文 时间:
2015-01-21 13:27:01
阅读次数:
416
传送门:https://oj.leetcode.com/problems/binary-tree-level-order-traversal/Given a binary tree, return thelevel ordertraversal of its nodes' values. (ie, ...
分类:
其他好文 时间:
2015-01-21 13:22:25
阅读次数:
151
什么是转义字符mysql的escape character指的是需要转义的特殊字符,这些字符出现在sql语句中,如果没有转移会导致sql语法报错或者有sql注入攻击的可能。主要有以下几种都需转义:\x00, \n, \r, \, ', " and \x1a. 比如' 就需要变成\'下面是sql测试:mysql> INSERT INTO nodes(name) VALUES ('select a.d...
分类:
数据库 时间:
2015-01-20 23:57:42
阅读次数:
360
#创建表
#create table stu(id int primary key, name char(10), age int);
#删除表
#drop table stu;
#增加
#insert into stu(id, age, name) values(1, 20, '小明');
#insert into stu(id, name, age) values(5, ...
分类:
数据库 时间:
2015-01-20 22:19:54
阅读次数:
318
Gray CodeThe gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the tot...
分类:
其他好文 时间:
2015-01-19 23:27:51
阅读次数:
244
1 项目丢失了default.properties这个文件会导致,从别的项目中拷贝一个过来,修改成对应的target即可2.当eclipse遇到版本不兼容adt,导致adt没有下载完全,但eclipse只是禁用了这个adt没有把它卸载掉,"Help" -> "Software Updates" ->...
分类:
其他好文 时间:
2015-01-19 23:24:30
阅读次数:
193
-----------表分区的维护----------- -------增加分区 ALTER TABLE 表名 ADD PARTITION 分区名 VALUES LESS THAN(值) ----删除分区 ALTER TABLE 表名 DROP PARTITION 分区表名----截断分区 删除当前...
分类:
其他好文 时间:
2015-01-19 23:21:29
阅读次数:
172
# /res/values 目录详解------**/res/values** 下可以放置的文件有:> * strings.xml > * arrays.xml > * dimens.xml > * colors.xml > * styles.xml### 绘制表格| 文件类型 |作用|temp| ...
分类:
其他好文 时间:
2015-01-19 22:40:20
阅读次数:
378