div{ height:200px; color:#F00;}.left{ float:left;
width:100px; background:#00f; _margin-right:-3px;}.right{ float:right;
width:100px; background:#0f0;...
分类:
其他好文 时间:
2014-05-26 23:51:20
阅读次数:
401
习惯了直接在xml里设置margin(距离上下左右都是10dip),如:只是有些情况下,需要在java代码里来写。API中,android.view.ViewGroup.MarginLayoutParams有个方法setMargins(left,
top, right, bottom)。可是View...
分类:
移动开发 时间:
2014-05-26 23:51:05
阅读次数:
543
二叉树定义:每个结点最多有两个子树的树struct TreeNode { int val;
TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL),
right(NULL) {} };...
分类:
其他好文 时间:
2014-05-26 23:43:52
阅读次数:
351
原题地址:https://oj.leetcode.com/problems/populating-next-right-pointers-in-each-node/题意:
1 / \ 2 3 / \ / \ 4 5 6 7变为: ...
分类:
编程语言 时间:
2014-05-26 23:43:29
阅读次数:
332
copyFrom====〉http://www.cnblogs.com/2050/archive/2012/07/31/2616460.html高度自适应布局 我是left
我是right现在我的高度比left高,但left用它的padding-bottom补偿了这部分高度 //PS因为...
分类:
其他好文 时间:
2014-05-26 23:20:28
阅读次数:
295
二叉树非递归访问,借助一个栈,来模拟递归调用过程。struct TreeNode { char
val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL),
right(NULL...
分类:
其他好文 时间:
2014-05-26 22:25:25
阅读次数:
353
[题目]设$p>1,f\in
C(0,+\infty)$,且$\int_0^\infty|f(t)|^pdt$收敛,证明:$$\left\{\int_0^\infty\left[\frac{1}{x}\int_0^x|f(t)|dt\right]^pdx\right\}^{\frac{1}{p}}\...
分类:
其他好文 时间:
2014-05-23 06:18:24
阅读次数:
408
1 #include 2 3 4 using namespace std; 5 6 void
Repeat(int* a,int Left,int Right); 7 int QuickSort(int* a,int Left,int Right); 8
9 10 void main()1...
分类:
其他好文 时间:
2014-05-22 14:53:10
阅读次数:
224
VirtualBox 的 Host 键是哪一个?默认的 Host = Right Ctrl
组合键,意思是键盘上两个 “Ctrl”中右边的那个。键盘上是没有 “Right”这个键的,刚开始不明白,后来才知道是这个意思。Host 键可以点击 Oracle
VM VirtualBox 管理器的左上角 “...
分类:
其他好文 时间:
2014-05-21 23:02:29
阅读次数:
950
以下内容系原创,转载请务必注明地址
主要参考资料:我在 Stackoverflow 上提的问题 Why
the first is right but the second is wrong ?
这令人纠结的两行代码如下:
const char *cval = "nothing"; // 正确
int *ival = {1, 2, 3, 4}; // 错误...
分类:
其他好文 时间:
2014-05-21 15:32:47
阅读次数:
277