class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here if(n==0) return 1; int su ...
分类:
其他好文 时间:
2017-03-08 19:19:29
阅读次数:
125
题目: 描述:假设你正在爬楼梯,需要n步你才能到达顶部。但每次你只能爬一步或者两步,你能有多少种不同的方法爬到楼顶部? 样例 比如n=3,1+1+1=1+2=2+1=3,共有3中不同的方法 返回 3 思路: 源码: ...
分类:
其他好文 时间:
2017-03-08 13:12:44
阅读次数:
151
class Solution { public: int climbStairs(int n) { using namespace std; int a=1,b=1,number=0; if(n==0||n==1) { return 1; } while(n>1) ... ...
分类:
其他好文 时间:
2017-03-08 00:39:13
阅读次数:
149
You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you cl ...
分类:
其他好文 时间:
2017-03-07 08:40:20
阅读次数:
155
题目1:删除排序数组中的重复数字 描述:给定一个排序数组,在原数组中删除重复出现的数字,使得每个元素只出现一次,并且返回新的数组的长度。 不要使用额外的数组空间,必须在原地没有额外空间的条件下完成。 样例 给出数组A =[1,1,2],你的函数应该返回长度2,此时A=[1,2]。 public in ...
分类:
其他好文 时间:
2017-03-06 20:28:00
阅读次数:
134
alibaba有好几个分布式框架,主要有:进行远程调用(类似于RMI的这种远程调用)的(dubbo、hsf),jms消息服务(napoli、notify),KV数据库(tair)等。这个框架/工具/产品在实现的时候,都考虑到了容灾,扩展,负载均衡,于是出现一个配置中心(ConfigServer)的东 ...
分类:
其他好文 时间:
2017-02-11 12:18:19
阅读次数:
338
这道题参考了这个网址: http://blog.csdn.net/u012490475/article/details/48845683 /* 首先考虑边界情况,当有1层时,有一种方法。 然后再看2层时,有1+1、和2+0,两种方法。 再看3层时,首先有两种选择:走一步或者走两步。 如果走两步,那后 ...
分类:
其他好文 时间:
2016-12-20 07:17:20
阅读次数:
136
01. That's no point. 那没有什么意义. 02. I dont't buy(相信) it.= I don't believe it.我不相信. 03. Big deal. n.[美国俚语]名人,要人,要员,大人物;了不起的事,极其重大的事。【做反语时表示没什么大不了】 04. Ju ...
分类:
其他好文 时间:
2016-12-06 20:38:34
阅读次数:
166
Windows 7 封装篇(一)【母盘定制】[手动制作]定制合适的系统母盘 http://www.win10u.com/article/html/10.html Windows 7 封装篇(一)【母盘定制】[手动制作]定制合适的系统母盘 Windows 7 封装篇(一)【母盘定制】定制合适的系统母盘 ...
I backpedaled. "They seemed nice enough to me. I just noticed they keptto themselves. 我改口说道,他们看起来对我来说不错,我只是注意到他们总是独来独往。 They're all very attractive," ...
分类:
其他好文 时间:
2016-11-23 06:40:17
阅读次数:
185