证明:显然乘积空间$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
$\bf(引理1)$设$T$为$\bf{Banach}$空间$X$到$\bf{Banach}$空间$Y$的有界线性算子,且$TX=Y$,则对任意的$a > 0$,存在$\delta > 0$,使得$TB\left( {0,a} \right)$在$O\left( {0,a\delta } \righ...
分类:
其他好文 时间:
2014-06-18 22:38:36
阅读次数:
325
new document div{position:absolute;width:200px;height:200px;left:0;top:0;right:0;bottom:0;margin:auto;border-radius:50%;backgroun...
分类:
Web程序 时间:
2014-06-18 21:43:53
阅读次数:
358
left content right content main content
分类:
其他好文 时间:
2014-06-18 19:01:14
阅读次数:
125
css3 动画效果比如transition:all 2s linear;这种用来计算及时的物体坐标的话会带来一定的问题比如把一个DIV从A点移动到B点。JS为DIV.style.left=B;但是当我们使用上面的transition属性后,A点移动到B点是2秒内完成的,当执行JS代码时候,DIV还没...
分类:
Web程序 时间:
2014-06-17 00:43:52
阅读次数:
443
证明:必要性.设${x_n} \in D\left( T \right),\left( {{x_n},T{x_n}} \right) \to \left( {x,y} \right)$,由$T$为闭算子知,$x \in D\left( T \right)$,且$y=Tx$,于是$$\left( {x...
分类:
其他好文 时间:
2014-06-17 00:23:23
阅读次数:
177
循环判断2个数组将相同的公共元素复制到新数组中即可 1 2 3 import java.util.Arrays; 4 5 public class count_same_number { 6 7 public static int[] join(int[] a,int[] b) 8 ...
分类:
编程语言 时间:
2014-06-17 00:22:18
阅读次数:
360
不是BST,那么搜索两节点的LCA就复杂点了,因为节点是无序的。
下面是两种方法,都写进一个类里面了。
当然需要重复搜索的时候,可以使用线段树及多种方法加速搜索。
#include
#include
using namespace std;
class LCANormalTree
{
struct Node
{
int key;
Node *left, *right;...
分类:
其他好文 时间:
2014-06-16 20:20:04
阅读次数:
234
demo代码如下。欢迎指正与讨论。#include<iostream>
#include<queue>
#include<stack>
usingnamespacestd;
template<typenameT>
structBinaryNode{
Telem;
BinaryNode*left;
BinaryNode*right;
BinaryNode(Td,BinaryNode*l=NULL,BinaryNode*r=NUL..
分类:
其他好文 时间:
2014-06-16 16:35:05
阅读次数:
278
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