Same Tree
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and
the n...
分类:
其他好文 时间:
2014-06-19 12:49:17
阅读次数:
301
ORA-27302: failure occurred at: skgpspawn3 可能的原因及处理
问题现象:
Mon May 26 07:08:58 GMT+08:00 2014Process startup failed, error stack:
Mon May 26 07:08:58 GMT+08:00 2014Errors in file /oracle/app...
分类:
其他好文 时间:
2014-06-19 12:28:48
阅读次数:
314
Activity:在Android的程序当中,Activity
一般代表手机屏幕的一屏。如果把手机比作一个浏览器,那么Acitivity就相当于一个网页。在Activity 当中可以添加一些Button、Check box
等控件。可以监听控件并处理用户的事件做出响应。一般一个Android 应用是...
分类:
移动开发 时间:
2014-06-16 09:49:19
阅读次数:
240
JDK 7u60 版本发布了,主要改进包括:JavaFX 更新到 2.2.60Java Mission Control(JMC)更新到 5.3如果你在一个早期版本的Java中禁用了过期检查功能,那么Java可能会在首次启动时忽略deployment.expiration.check.enabled属...
分类:
其他好文 时间:
2014-06-15 23:53:33
阅读次数:
406
在jquery 1.8.x中的版本,我们对于checkbox的选中与不选中操作如下:判断是否选中$('#checkbox').prop('checked')设置选中与不选中状态:$('#checkbox').attr('checked',true)$('#checkbox').attr('check...
分类:
Web程序 时间:
2014-06-15 23:29:04
阅读次数:
311
Eclipse运行时提示“Failed to load the JNI shared library /Java/jre6/bin/client/jvm.dll”的一个解决方案
出现这个问题的一个原因是eclipse需要的64位jdk,你的环境变量中配的是32位jdk
于是有人建议,重装个64位的jdk,把环境变量换成64位的jdk,但如果你的其它程序需要32位jdk的话,这肯定不是一个好办法...
分类:
编程语言 时间:
2014-06-15 20:07:52
阅读次数:
419
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ 2 2
/ \ / 3 4 4 3
But the f...
分类:
其他好文 时间:
2014-06-15 19:49:35
阅读次数:
176
4.1 确认表单必填项目完整性
function check_submit(){
if($("tex_user_name").value=="") {alert("请输入用户名");return (false);}
if($("txt_user_pass").value=="") {alert("请输入密码");return (false);}
if($...
分类:
编程语言 时间:
2014-06-15 08:50:23
阅读次数:
272
二叉查换树,左孩子小于等于根,右孩子大于根。完全二叉树,叶子都在最后一层,所有结点(除了叶子)都有两个孩子。平衡二叉树,左右子树的高度在一定范围内。4.1
Implement a function to check if a binary tree is balanced. For the purp...
分类:
其他好文 时间:
2014-06-12 08:09:04
阅读次数:
167