摘要:
原题链接: "https://leetcode.com/problems/k diff pairs in an array/description/" 这道题目很有意思哦,但是我始终没有写出实现来,下面是抄袭讨论区的答案啦: 明天下午就要去新浪面试了,还有一大堆东西没有复习,晚上一个小时看了几集《银 阅读全文
摘要:
原题链接: "https://leetcode.com/problems/max consecutive ones/description/" 这道题目级别为easy,实际做起来也是so easy: 阅读全文
摘要:
原题链接: "https://leetcode.com/problems/find all numbers disappeared in an array/description/" 我的解答: Java import java.util.ArrayList; import java.util.Li 阅读全文
摘要:
原题链接: "https://leetcode.com/problems/lowest common ancestor of a binary tree/description/" 代码实现如下: 阅读全文
摘要:
原题链接: "https://leetcode.com/problems/lowest common ancestor of a binary search tree/description/" 代码实现: Java / Created by clearbug on 2018/2/26. / pub 阅读全文
摘要:
这道题目也不错,详细讲解了面试套路。。。 当然了,LeetCode上面也有相关题目呢: "http://www.cnblogs.com/optor/p/8645357.html" "http://www.cnblogs.com/optor/p/8645576.html" 阅读全文
摘要:
题目比较简单,主要是考察异常情况得处理: 阅读全文
摘要:
这道题真是扩展思维啊,我服了: 阅读全文
摘要:
这道题目很有意思,思路和方法都堪称完美: Java / Created by clearbug on 2018/2/26. / public class Solution { public static void main(String[] args) { Solution s = new Solu 阅读全文
摘要:
这道题目条件限制严格,需要发散思维。。。但是作者是以 C++ 语言特性来做讲解的,对于 Java 狗只能说稍微有点参考意义吧! 阅读全文
摘要:
原题链接: "https://leetcode.com/problems/kth largest element in an array/description/" 代码如下: 阅读全文
摘要:
原题链接: "https://leetcode.com/problems/third maximum number/description/" 我的解答: 阅读全文