alibaba有好几个分布式框架,主要有:进行远程调用(类似于RMI的这种远程调用)的(dubbo、hsf),jms消息服务(napoli、notify),KV数据库(tair)等。这个框架/工具/产品在实现的时候,都考虑到了容灾,扩展,负载均衡,于是出现一个配置中心(ConfigServer)的东 ...
分类:
其他好文 时间:
2017-03-10 20:40:27
阅读次数:
379
class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here if(n==0) return 1; long s ...
分类:
其他好文 时间:
2017-03-09 15:30:56
阅读次数:
147
package Maxmoney;public class Lchar{ public int climbStair(int t) { if(t == 0){ return 1; } int[] ST= new int[t+1]; ST[0] = 1; ST[1] = 1; for(int j=2; ...
分类:
其他好文 时间:
2017-03-09 13:07:05
阅读次数:
147
class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here // write your code herein ...
分类:
其他好文 时间:
2017-03-09 00:32:46
阅读次数:
133
class Solution { public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here if(n == 0) return 1; if(... ...
分类:
其他好文 时间:
2017-03-08 23:11:55
阅读次数:
200
class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here int i,s[n]; if(n==0) retu ...
分类:
编程语言 时间:
2017-03-08 22:53:20
阅读次数:
180
public class Solution { /** * @param n: An integer * @return: An integer */ public int climbStairs(int n) { // write your code here int a=0,b=1,sum=0; ...
分类:
其他好文 时间:
2017-03-08 22:49:51
阅读次数:
144
class Solution {public:/*** @param n: An integer* @return: An integer*/ int climbStairs(int n) {// write your code hereint a = 1, b = 1, k = 0;if(n == ...
分类:
其他好文 时间:
2017-03-08 22:37:52
阅读次数:
142
class Solution {public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { // write your code here if(n==0) return 1; if(n<= ...
分类:
其他好文 时间:
2017-03-08 20:18:13
阅读次数:
161
class Solution { public: /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { if(n <= 1) return 1; if(n ==2) return 2; int res ...
分类:
其他好文 时间:
2017-03-08 19:33:47
阅读次数:
112