上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: 原题链接: "https://leetcode.com/problems/nim game/description/" 这是一道牛逼哄哄的脑筋急转弯题目: 参考 "https://blog.csdn.net/nomasp/article/details/50389513" 阅读全文
posted @ 2018-04-08 11:20 optor 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/word pattern/description/" 实现如下: 阅读全文
posted @ 2018-04-08 10:59 optor 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 简介 内部排序算法就是指内存中的排序算法,而外部排序算法则是指待排序数据过多,无法一次性加载到内存中,排序过程需要读取磁盘,因此需要考虑磁盘 IO 的消耗! 内部排序算法分类 内部排序算法按照操作类型可大致分为五类:①插入排序;②交换排序;③选择排序;④归并排序;⑤计数排序; 内部排序算法按照时间复 阅读全文
posted @ 2018-04-07 11:46 optor 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/first bad version/description/" `` 实现如下: Java / Created by clearbug on 2018/4/6. / public class VersionControlSol 阅读全文
posted @ 2018-04-06 19:22 optor 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/articles/palindrome permutation/" 这道题目很简单: Java / Created by clearbug on 2018/2/26. / public class Solution { public stati 阅读全文
posted @ 2018-04-06 18:56 optor 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/ugly number ii/description/" 《剑指Offer》上面的原题,我已经看过解答了,就不废话了: Java / Created by clearbug on 2018/2/26. / public cla 阅读全文
posted @ 2018-04-06 18:16 optor 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 这个题目在 LeetCode 上有原题,直接看下面刷的 LeetCode 吧! "http://www.cnblogs.com/optor/p/8728322.html" "http://www.cnblogs.com/optor/p/8728409.html" 阅读全文
posted @ 2018-04-06 17:42 optor 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/ugly number/description/" 实现如下: Java / Created by clearbug on 2018/2/26. / public class Solution { public static 阅读全文
posted @ 2018-04-06 17:42 optor 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/add digits/description/" 实现如下: Java / Created by clearbug on 2018/2/26. / public class Solution { public static v 阅读全文
posted @ 2018-04-06 17:11 optor 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 原题链接: "https://leetcode.com/problems/binary tree paths/description/" 直接走一波深度优先遍历: 不过这道题目我的实现还是写复杂了,提交区有的是简洁高效的代码。。。都怪自己基础不好啊!!! 阅读全文
posted @ 2018-04-06 12:20 optor 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页