证明:显然乘积空间$X \times Y$按范数$\left\| {\left( {x,y} \right)} \right\| = \sqrt {{{\left\| x \right\|}^2} + {{\left\| y \right\|}^2}} $成为赋范线性空间,且容易证明它是完备的.接下...
分类:
其他好文 时间:
2014-06-18 22:39:21
阅读次数:
258
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree {3,9,20,#,#,15,7},
...
分类:
其他好文 时间:
2014-06-15 15:17:43
阅读次数:
192
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:
Integers in each row are sorted from left to right.The first integer of each...
分类:
其他好文 时间:
2014-06-15 14:12:44
阅读次数:
238
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).
For example:
Given binary tree {3,9,20,#,#,15,7},
3
/ 9 20
...
分类:
其他好文 时间:
2014-06-15 13:26:54
阅读次数:
200
HTML有10个表格相关标签表格的大标题,该标记可以出现在 之间的任意位置。它对于搜索引擎的机器人记录信息十分重要。参数有align、valign表格的列定义属性定义表格列的分组,Firefox、Chrome 以及Safari 仅支持colgroup 元素的span 和width 属性定义表格定义表...
分类:
其他好文 时间:
2014-06-15 12:59:23
阅读次数:
374
$\bf引理:$设$\int_a^{ + \infty } {f\left( x \right)dx} $收敛,且${f\left( x \right)}$在$\left[ {a,{\rm{ + }}\infty } \right)$单调,则$\lim \limits_{x \to + \infty...
分类:
其他好文 时间:
2014-06-14 19:16:24
阅读次数:
372
$\bf引理:$设$\int_a^{ + \infty } {f\left( x \right)dx} $收敛,且${f\left( x \right)}$在$\left[ {a,{\rm{ + }}\infty } \right)$单调,则$\lim \limits_{x \to + \infty...
分类:
其他好文 时间:
2014-06-14 18:55:58
阅读次数:
172
Description:Given a binary tree, return thezigzag level ordertraversal of its nodes' values. (ie, from left to right, then right to left for the next ...
分类:
其他好文 时间:
2014-06-14 18:41:40
阅读次数:
265
css position的使用css 的 position 属性是用来设置元素的位置的,它还能设置一个元素出现在另一个元素的下层元素能用 top,bottom,left 和 right 属性设置位置, 但是在默认情况下是不管用的,除非先设置了position属性,HTML 元素的位置默认是设置为静态...
分类:
Web程序 时间:
2014-06-14 18:12:54
阅读次数:
294
自己实现了一下二叉搜索树的数据结构,记录一下:
#include
using namespace std;
struct TreeNode{
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int value) { val=value; left=NULL; right=NULL; }
};
clas...
分类:
编程语言 时间:
2014-06-14 13:36:40
阅读次数:
265