Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the ...
分类:
其他好文 时间:
2019-05-12 11:08:59
阅读次数:
125
Given an array of integers nums and a positive integer k, find whether it's possible to divide this array into k non-empty subsets whose sums are all ...
分类:
其他好文 时间:
2019-05-06 01:27:57
阅读次数:
113
public class Solution { /** * @param s1: A string * @param s2: A string * @param s3: A string * @return: Determine whether s3 is formed by interleavin... ...
分类:
其他好文 时间:
2019-05-06 01:06:40
阅读次数:
162
图着色算法描述: https://www.jianshu.com/p/6a52b390f5fa 给定无向连通图和m种不同的颜色。用这些颜色为图G的各顶点着色,每个顶点着一种颜色。是否有一种着色法使G中每条边的两个顶点有不同的颜色。 这个问题是图的m可着色判定问题。若一个图最少需要m种颜色才能使图中每 ...
分类:
编程语言 时间:
2019-05-03 22:36:55
阅读次数:
601
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. Example 1: Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac" Output: ...
分类:
其他好文 时间:
2019-04-29 12:33:45
阅读次数:
117
在 conf/hive-site.xml 中添加如下配置 重新进入Hive,如下所示: 配置已生效 . ...
分类:
数据库 时间:
2019-04-27 18:17:27
阅读次数:
344
kubernetes实战--kubeadm部署高可用K8S集群(v1.14.0)
分类:
其他好文 时间:
2019-04-24 09:28:41
阅读次数:
1175
版权声明:本文为博主原创文章,欢迎扩散,扩散请务必注明出处。 https://blog.csdn.net/robinson_0612/article/details/26485851 MySQL为开源数据库,因此能够基于源代码实现安装。基于源代码安装有很多其它的灵活性。也就是说我们能够针对自己的硬件 ...
分类:
数据库 时间:
2019-04-23 19:21:14
阅读次数:
177
题目: Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c. Example 1: Example 2: 分析: 给定一个 ...
分类:
编程语言 时间:
2019-04-22 00:18:10
阅读次数:
157
Given two non-empty binary trees s and t, check whether tree t has exactly the same structure and node values with a subtree of s. A subtree of s is a... ...
分类:
其他好文 时间:
2019-04-15 19:54:40
阅读次数:
131