/* 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...
分类:
其他好文 时间:
2015-01-27 23:09:49
阅读次数:
206
一、数组操作的基本函数数组的键名和值array_values($arr);获得数组的值array_keys($arr);获得数组的键名array_flip($arr);数组中的值与键名互换(如果有重复前面的会被后面的覆盖)in_array("apple",$arr);在数组中检索applearray...
分类:
编程语言 时间:
2015-01-27 20:20:29
阅读次数:
202
windows mysql 装了SQLyog - 32 bit
INSERT INTO USER VALUES ('123','123','紫轩');
数据库查询发现是乱码:
大概是因为装mysql的时候刚开始的默认格式是latin1,这时建议新建一个数据库(是新数据库不是重装),把编码改成gbk.
解决mysql乱码。
php连接mysql
<?php
$db_host...
分类:
数据库 时间:
2015-01-27 18:24:03
阅读次数:
181
1.1 oracle date对象的使用
(1)
创建date字段
例如,
create table foo_7(d1 date);
(2)
使用to_date函数插入date对象。to_date(‘字符串’,’字符串格式’)
例如,
insert into foo_7 values(to_date('2015年11月20日13时20分10秒','yyyy"年...
分类:
数据库 时间:
2015-01-27 15:07:07
阅读次数:
209
一、:enabled 标签选择器 为所有启用的标签 赋相应属性jQuery("input:enabled").each(function () { this.checked = true; });二、.map 构建表单中所有值的列表var values = jQuery('input:checkbo...
分类:
Web程序 时间:
2015-01-27 12:39:06
阅读次数:
165
应该是tomcat下部署了多个项目且都使用log4j。log4jConfigLocation/WEB-INF/log4j.propertieswebAppRootKeywebName.root
分类:
移动开发 时间:
2015-01-27 10:45:16
阅读次数:
117
demo:defineView1.如何自定义控件属性?2.如何动态创建组件?3.接口回调思想设计需要的属性values新建attrs.xml。通过来告诉系统这是自定义的属性 实现一个自定义的“View”重写构造方法,在构造方法中...
分类:
其他好文 时间:
2015-01-27 01:52:22
阅读次数:
296
Given a binary tree, return the postorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3return [3,2,...
分类:
其他好文 时间:
2015-01-27 01:51:12
阅读次数:
198
private void AddStudent(){string strName =txtName.Text.Trim();string strPwd = txtPwd.Text.Trim();string strSql ="insert into Student (name,pwd)values(...
分类:
数据库 时间:
2015-01-27 00:23:54
阅读次数:
194
Unique Binary Search TreesGivenn, how many structurally uniqueBST's(binary search trees) that store values 1...n?For example,Givenn= 3, there are a to...
分类:
其他好文 时间:
2015-01-27 00:16:11
阅读次数:
218