码迷,mamicode.com
首页 >  
搜索关键字:no-repeat    ( 2408个结果
[LeetCode] Find Leaves of Binary Tree 找二叉树的叶节点
Given a binary tree, find all leaves and then remove those leaves. Then repeat the previous steps until the tree is empty. Example: Given binary tree ...
分类:其他好文   时间:2016-06-25 13:36:30    阅读次数:133
软件设计的原则
Don’t Repeat Yourself (DRY)  DRY 是一个最简单的法则,也是最容易被理解的。但它也可能是最难被应用的(因为要做到这样,我们需要在泛型设计上做相当的努力,这并不是一件容易的事)。它意味着,当我们在两个或多个地方的时候发现一些相似的代码的时候,我们需要把他们的共性抽象出来形一个唯一的新方法,并且改变现有的地方的代码让他们以一些合适的参数调用这个新的方法。 参考:htt...
分类:其他好文   时间:2016-06-24 15:58:42    阅读次数:152
css笔记1
<body style="background-color(背景颜色):rgba(255,0,0,0)红;background-image(背景加图片):url(图片地址);background-repeat(背景重复):no-repeat;background-position(背景位置):100 ...
分类:Web程序   时间:2016-06-23 18:46:24    阅读次数:212
ng-repeat 设定select 选择项
ng-repeat 设定select 选择项 ...
分类:其他好文   时间:2016-06-17 12:45:24    阅读次数:136
Leetcode 39. Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeat ...
分类:其他好文   时间:2016-06-15 14:10:06    阅读次数:145
0x04 高级语法
while-endw .while(条件) 循环体(条件满足时执行) .endw repeat-until .repeat 循环体(条件不满足时执行) .until(条件) if-elseif-endif .if(条件1) 指令1 .elseif(条件2) 指令2 .endif 条件运算符 变量与操 ...
分类:其他好文   时间:2016-06-13 07:43:29    阅读次数:194
css3小总结
一.边框 1.border-radius:x,y,模糊半径,color(x为负数时左移动,y为负数是上移动) 2.box-radius:x,y,模糊半径,阴影半径,color 3.border-image:url() 切割图片的大小 repeat/round(平铺)/stretch(拉伸)。(*) ...
分类:Web程序   时间:2016-06-12 21:50:40    阅读次数:174
RxJava操作符(02-创建操作)
转载请标明出处: http://blog.csdn.net/xmxkf/article/details/51612415 本文出自:【openXu的博客】目录: Create Defer EmptyNeverThrow From Interval Just Range Repeat Timer 源码下载??在上一篇博客中我们初步体验了Rxjava的使用,领略了RxJava对于异步操作流编码的...
分类:编程语言   时间:2016-06-12 14:06:06    阅读次数:695
数据结构与算法之五 链接列表
在本章中,你将学习: 认识链接列表的特性 执行单链接列表 假定您已经编写了一个算法来产生并存储1到10,00,000之间的所有质数,然后显示它们。 您如何解决这个问题? 考虑以下使用数组来解决此问题的算法: 1.Set I = 0 2.Repeat step 3 varying N from 2 to 1000000 3.If N is a prime ...
分类:编程语言   时间:2016-06-12 02:19:44    阅读次数:197
39. Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeat ...
分类:其他好文   时间:2016-06-11 08:12:13    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!