You are playing CSGO. There are n Main Weapons and m Secondary Weapons in CSGO. You can only choose one Main Weapon and one Secondary Weapon. For each ...
分类:
其他好文 时间:
2018-10-01 11:55:27
阅读次数:
168
474. Ones and Zeroes In the computer world, use restricted resource you have to generate maximum benefit is what we always want to pursue. For now, su ...
分类:
其他好文 时间:
2018-10-01 11:55:17
阅读次数:
176
记一次ElasticSearch重启之后shard未分配问题的解决 环境 ElasticSearch6.3.2,三节点集群 Ubuntu16.04 一个名为user的索引,索引配置为:3 primary shard,每个primary shard 2个replica 正常情况下,各个分片的分布如下: ...
分类:
其他好文 时间:
2018-09-30 23:20:26
阅读次数:
3036
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Inpu ...
分类:
编程语言 时间:
2018-09-30 22:42:20
阅读次数:
234
一、题目 1、审题 2、分析 给出一棵二叉树,输出其最大深度。 二、解答 1、思路: 方法一、 采用递归方式,输出其最大深度。 方法二、 直接在此方法上递归。 方法三、 采用 BFS 广度优先遍历,用一变量记录深度。 方法四、 利用 DFS 深度优先遍历方法; 采用两个栈,一个栈记录节点,另一个栈记 ...
分类:
其他好文 时间:
2018-09-30 20:42:42
阅读次数:
212
def story(): print('从前有座山') story() print(111) story() RecursionError: maximum recursion depth exceeded while calling a Python object递归的错误,超过了递归的最大深度 ...
分类:
编程语言 时间:
2018-09-30 14:59:48
阅读次数:
194
Given an integer array, find three numbers whose product is maximum and output the maximum product. Note: 原题地址: Maximum Product of Three Numbers 难度: E ...
分类:
编程语言 时间:
2018-09-30 14:41:36
阅读次数:
161
今天看HashMap的底层实现,发现HashMap的最大容量规定为: // 最大容量(必须是2的幂且小于2的30次方,传入容量过大将被这个值替换) static final int MAXIMUM_CAPACITY = 1 << 30; 当看到 1<<30 时,对“<<” 有点模糊,当了解“<<”的 ...
分类:
其他好文 时间:
2018-09-29 14:31:30
阅读次数:
141
Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i+1??, ..., N?j?? } where 1≤i≤j≤K. T ...
分类:
其他好文 时间:
2018-09-29 14:24:29
阅读次数:
146
AsnycTask 原理就是“线程池 + Handler”的组合。 AsyncTask 里的线程池: private static final int CPU_COUNT = Runtime.getRuntime().availableProcessors(); private static fin ...
分类:
其他好文 时间:
2018-09-28 12:44:19
阅读次数:
269