码迷,mamicode.com
首页 >  
搜索关键字:sky    ( 832个结果
lintcode-medium-Number of Airplanes in the Sky
Given an interval list which are flying and landing time of the flight. How many airplanes are on the sky at most? Notice If landing and flying happen ...
分类:其他好文   时间:2016-04-02 08:25:54    阅读次数:193
ES6--函数扩展
一:函数参数的默认值 ES6允许为函数的参数设置默认值,即直接写在参数定义的后面: function log(x,y='world') { console.log(x,y); } log('hello');//hello world log('hello','sky');//hello sky log('hello','');//hello` 二:与解构赋值默认值结合使用f...
分类:其他好文   时间:2016-04-01 18:14:20    阅读次数:234
ViewPager + HorizontalScrollView 实现可滚动的标签栏
这是一个可滑动的标签栏的自定义控件,参考此文章http://blog.csdn.net/fx_sky/article/details/8990573,我将主要的功能整合成一个类,配上2个特定的布局即可使用。 效果图: 主要布局文件: 标签的布局: sync_nav_radiogroup_item.x ...
分类:其他好文   时间:2016-03-24 08:44:50    阅读次数:252
Vi/Vim查找替换使用方法
vi/vim 中可以使用 :s 命令来替换字符串。该命令有很多种不同细节使用方法,可以实现复杂的功能,记录几种在此,方便以后查询。 :s/vivian/sky/ 替换当前行第一个 vivian 为 sky :s/vivian/sky/g 替换当前行所有 vivian 为 sky :n,$s/vivi
分类:系统相关   时间:2016-03-14 18:15:50    阅读次数:237
Reverse Words in a String
Given an input string, reverse the string word by word. For example, Given s = “the sky is blue”, return “blue is sky the”. Update (2015-02-12): For C
分类:其他好文   时间:2016-02-24 10:45:00    阅读次数:118
Reverse Words in a String--not finished yet
Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the". Update (2015-02-12):For C pr
分类:其他好文   时间:2016-02-12 12:46:41    阅读次数:159
【CodeForces 618C】Constellation
题 Cat Noku has obtained a map of the night sky. On this map, he found a constellation with n stars numbered from 1to n. For each i, the i-th star is l
分类:其他好文   时间:2016-02-11 23:48:22    阅读次数:447
【字符串】Reverse Words in a String(两个栈)
题目: Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the". 思路: 利用两个stack,一个表示单词,一个表
分类:其他好文   时间:2016-02-11 17:59:00    阅读次数:209
codeforces Wunder Fund Round 2016 (Div. 1 + Div. 2 combined) C. Constellation
C. Constellation Cat Noku has obtained a map of the night sky. On this map, he found a constellation with n stars numbered from 1 to n. For each i, th
分类:其他好文   时间:2016-01-30 13:35:56    阅读次数:204
832条   上一页 1 ... 52 53 54 55 56 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!