什么是站立会议? 站立会议是敏捷软件开发方法论Scrum的相关技术之一,亦可称之为Scrum的最佳实践。具体形式为每天的同一时间,一个敏捷开发团队的所有成员面对面站在一起,进行一个为期15~20分钟的短会。在会议上,每个人要依次回答以下三个问题: 1)从上次站立会议到现在,你完成了什么? 2)从现在 ...
分类:
其他好文 时间:
2016-09-10 08:57:52
阅读次数:
161
1. 关于Spring加载多个properties文件 1) Spring容器采用反射扫描的发现机制,如发现Spring容器中有一个 org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的Bean就 会停止对剩余 ...
分类:
其他好文 时间:
2016-09-10 08:56:59
阅读次数:
145
4688: One-Dimensional Description 考虑一个含有 N 个细胞的一维细胞自动机。细胞从 0 到 N-1 标号。每个细胞有一个被表示成一个小于 M 的非负整数的状态。细胞的状态会在每个整数时刻发生骤变。我们定义 S(i,t) 表示第 i 个细胞在时刻 t 的状态。在时刻 ...
分类:
其他好文 时间:
2016-09-10 08:55:48
阅读次数:
243
题目 Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 简单题,需要考虑两个问题,1)如果输入的末尾是0怎么办?2)如果倒过来的数字溢出了怎么办? ...
分类:
其他好文 时间:
2016-09-10 08:54:59
阅读次数:
122
【题目描述】 小Z的超级钢琴可以弹奏出n个音符,编号为1至n。第i个音符的美妙度为Ai,其中Ai可正可负。 一个“超级和弦”由若干个编号连续的音符组成,包含的音符个数不少于L且不多于R。我们定义超级和弦的美妙度为其包含的所有音符的美妙度之和。两个超级和弦被认为是相同的,当且仅当这两个超级和弦所包含的 ...
分类:
其他好文 时间:
2016-09-10 08:54:23
阅读次数:
144
题目: Given an integer, write a function to determine if it is a power of two. 非常简单的一道题目 ...
分类:
其他好文 时间:
2016-09-10 08:56:56
阅读次数:
104
新地址: http://blog.csdn.net/chengbozhang ...
分类:
其他好文 时间:
2016-09-10 08:56:30
阅读次数:
145
Given a 2D board and a list of words from the dictionary, find all words in the board. Each word must be constructed from letters of sequentially adja ...
分类:
其他好文 时间:
2016-09-10 07:51:08
阅读次数:
195
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of ...
分类:
其他好文 时间:
2016-09-10 07:52:09
阅读次数:
122
题目连接:http://acm.zzuli.edu.cn/zzuliacm/problem.php?id=1894 1894: 985的方格难题 Description 985走入了一个n * n的方格地图,他已经知道其中有一个格子是坏的。现在他要从(1, 1)走到(n, n),每次只可以向下或者向 ...
分类:
其他好文 时间:
2016-09-10 07:50:39
阅读次数:
220
在显示技术领域中,色彩显示精度及色彩显示设备是最为重要的两大中心焦点。从早期的CRT球面显示器与位图显示状态阶段开始、到目前形成以曲面屏幕与量子点显示技术结合的行业趋势,是整个显示领域所经历的巨大发展阶段之一。尤其在当前,以三星等一系列专注显示品质的“量子点+..
分类:
其他好文 时间:
2016-09-10 06:48:48
阅读次数:
174
Nginx之二:负载均衡及高可用一、Nginx负载均衡及高可用简介负载均衡是为了解决单个节点压力过大,造成Web服务响应过慢,严重的情况下导致服务瘫痪,无法正常提供服务。负载均衡,将用户的所有HTTP请求均衡的分配到每一台机器上,充分发挥所有机器的性能,提高服务的质量和用户..
分类:
其他好文 时间:
2016-09-10 06:46:38
阅读次数:
435
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. For example, 123 -> "One Hundre ...
分类:
其他好文 时间:
2016-09-10 06:44:43
阅读次数:
163
思路:递归。 null也是tree。 null tree (definition) Definition: (1) A tree which is empty. (2) A tree whose leaf nodes all have a null value. https://xlinux.nis ...
分类:
其他好文 时间:
2016-09-10 06:44:29
阅读次数:
165