The gray code is a binary numeral system where two successive values differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print the sequence of ...
分类:
其他好文 时间:
2015-01-13 17:45:19
阅读次数:
140
SQL Server 2008中新增功能:可以使用单个Insert命令插入多行。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Create table...
分类:
数据库 时间:
2015-01-13 17:19:07
阅读次数:
131
有个容器要上下左右留点空间,稍稍留点就行,于是选择了margin属性。随手写了:margin:5%一跑起来, 整个界面是乱七八糟。仔细一查,margin的定义里写着:Arelative to thewidthof the containing block. Negative values are a...
分类:
其他好文 时间:
2015-01-13 14:16:41
阅读次数:
232
在Android开发中,往往为了适配dpi和分辨率,要写多套layout或者values,而鉴于dpi和分辨率的计算方式,很多时候适配的大部分工作都是简单的计算方面。譬如DPI从1.5到2.0,就是将所有dip、sp为单位的数值都乘以0.75(也就是1.5/2)。所以我们完成可以自己写一个小工具.....
分类:
移动开发 时间:
2015-01-13 14:08:21
阅读次数:
191
在做网站开发的时候,有的时候需要对某些字段进行唯一性的限制,然后就回产生以下的需求当数据库中某个字段是唯一的时候,当再次插入同样的数据是,进行更新操作语法:REPLACEINTOtablename(column)values(values)下面来看一下样例1、创建表mysql>createtablet1(idintprimar..
分类:
数据库 时间:
2015-01-13 10:43:53
阅读次数:
168
\plus\download.php174行插入以下代码 if($cfg_ml->M_Rank>$needRank)
{
$inquery="INSERTINTO`#@__member_operation`(mid,oldinfo,money,mtime,buyid,product,pname,sta)
VALUES(‘".$cfg_ml->M_ID."‘,‘$arctitle‘,‘$needMoney‘,‘".time()."‘,‘ARCHIVE".$id."‘,..
分类:
其他好文 时间:
2015-01-13 01:34:11
阅读次数:
176
题目:
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree a...
分类:
编程语言 时间:
2015-01-12 16:40:36
阅读次数:
221
1 创建account表
CREATE TABLE account(
id INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(30),
balance NUMERIC(10.2)
);
INSERT INTO account(NAME,balance) VALUES('zs', 100000);
INSERT INTO account(NAME,...
分类:
编程语言 时间:
2015-01-12 16:28:55
阅读次数:
195
引用:暂无 1 create event event_demo 2 on schedule 3 every 1 day starts '2014-12-23 16:07:00' 4 do 5 insert into demo1(col1, col2) values(date_format(date_...
分类:
数据库 时间:
2015-01-12 11:23:53
阅读次数:
176
The problem:Given a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then right to left for the next ...
分类:
其他好文 时间:
2015-01-12 01:34:47
阅读次数:
189