码迷,mamicode.com
首页 >  
搜索关键字:left    ( 12115个结果
【leetcode】Populating Next Right Pointers in Each Node
Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next pointe...
分类:其他好文   时间:2014-07-22 23:16:35    阅读次数:373
[leetcode]Binary Tree Maximum Path Sum
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(...
分类:其他好文   时间:2014-07-22 23:07:34    阅读次数:312
线性渐变
1 background: -webkit-gradient(linear,left bottom,left top,color-stop(0,white),color-stop(0.5,#eee));2 background: -webkit-linear-gradient(center bott...
分类:其他好文   时间:2014-07-22 23:06:13    阅读次数:364
CSS遮罩层
只需要样式控制即可!.bg {background: #000;position: absolute;top: 0;left: 0;width: 100%;height: 100%;filter: alpha(opacity=35);-moz-opacity: 0.35;opacity: 0.35;...
分类:Web程序   时间:2014-05-01 16:27:52    阅读次数:980
Worse Comparison Of Love When It Comes To My Handbag Addiction
Sports Bags : bags, sport bags are always highly desirable items used by schools , youth , strength teams players left college sports alimony thing. T...
分类:数据库   时间:2014-05-01 14:26:26    阅读次数:492
opacity兼容写法
1 .opacity{2 position: absolute;3 top: 0px;left: 0px;4 background: #000;5 filter:alpha(opacity=50); /* IE */6 -moz-opacity:0...
分类:其他好文   时间:2014-04-30 18:05:10    阅读次数:900
打造IE6的position:fixed整理篇
fixed真的是一个很好的属性。特别是做弹层的时候。可惜的是“国内主流浏览器”IE6大大不支持。一般的我们都会通过CSS中的表达式来解决这个问题。.fixed {position:absolute;left:expression(eval(document.documentElement.scrol...
分类:其他好文   时间:2014-04-30 13:43:11    阅读次数:341
最大子数组和(最大子段和)
比如对于数组[1,-2,3,5,-1,2] 最大子数组和是sum[3,5,-1,2] = 9, 我们要求函数输出子数组和的最大值,并且返回子数组的左右边界(下面函数的left和right参数).本文我们规定当数组中所有数都小于0时,返回数组中最大的数(也可以规定返回0,只要让以下代码中maxsum初...
分类:其他好文   时间:2014-04-29 15:32:49    阅读次数:554
网页上中下三分布局,上下固定,中间自适应
* { margin:0; padding:0; } html, body, #box { height:100%; font:small/1.5 "宋体", serif; } body { text-align:center; } #box { text-align:left; background:#666; display:table; wi...
分类:Web程序   时间:2014-04-29 13:36:20    阅读次数:469
Leetcode:Minimum Path Sum 最小路径和
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move either down or right at...
分类:其他好文   时间:2014-04-28 10:46:41    阅读次数:311
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!