<%@ page language="java" contentType="text/html; charset=ISO-8859-1" ? ? pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loo...
分类:
数据库 时间:
2014-11-09 23:58:56
阅读次数:
397
Given inorder and level-order traversals of a Binary Tree, construct the Binary Tree. Following is an example to illustrate the problem.BinaryTreeInpu...
分类:
其他好文 时间:
2014-11-09 20:41:07
阅读次数:
196
Given a BST, transform it into greater sum tree where each node contains sum of all nodes greater than that node.自己想的复杂了,其实就是一个反向的inorder。新的值就是前面所有元素的...
分类:
其他好文 时间:
2014-11-09 15:07:49
阅读次数:
186
二叉树的各种遍历方法有 前序遍历 中序遍历 后序遍历 层序遍历。其中前三种遍历有递归程序可以实现,但是我们也有必要掌握其非递归版本的算法实现。正好在leetcode中遇到了遍历二叉树的问题,今天在这里一并总结了。首先,引用leetcode中关于二叉树节点的定义。1 // Definition ...
分类:
编程语言 时间:
2014-11-09 12:37:56
阅读次数:
329
【为什么人们往往不愿意承担风险】 关键的原因在于,收入本身并不重要,我们关心的是它能带给我们的好处。边际效用是,每增加一个单位收入所带来的效用。收入的边际效用是递减的。换句话说,增加同样多的收入,低收入者主观上感觉自己收益了很多,本来就是高收入的人则觉得这点收入算不了什么。低收入者觉得自己收益了很....
分类:
其他好文 时间:
2014-11-09 11:06:30
阅读次数:
110
Given inorder and postorder traversal of a tree, construct the binary tree.Solution: 1 /** 2 * Definition for binary tree 3 * public class TreeNode .....
分类:
其他好文 时间:
2014-11-09 06:16:44
阅读次数:
215
认识table表标签
table tr td,th
{
border:1px solid #090;//为表格添加边框:像素是1px 实体solid 颜色#000
}
//摘要summary的内容是不会在浏览器中显示出来的。它的作用是增加表格的可读性(语义化),
//使搜索引擎更好的读懂表格内容,还可以使屏幕阅读器更好的帮助特殊用户读取表格内容。
20...
分类:
Web程序 时间:
2014-11-08 22:16:09
阅读次数:
264
题意:
Given a binary tree, return the inorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [1,3,2].
Note: Recursive solution is trivial, could you do it iteratively?...
分类:
其他好文 时间:
2014-11-08 19:43:46
阅读次数:
188
标签定义 HTML 表格。简单的 HTML 表格由 table 元素以及一个或多个 tr、th 或 td 元素组成。tr 元素定义表格行,th 元素定义表头,td 元素定义表格单元(列)。
分类:
Web程序 时间:
2014-11-08 19:37:31
阅读次数:
1438
http://acm.hdu.edu.cn/showproblem.php?pid=1575#include #include #include #include #include #define mod 9973using namespace std;struct matrix{ int a...
分类:
其他好文 时间:
2014-11-08 16:34:23
阅读次数:
142