上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 49 下一页
摘要: LeetCode.62-unique-paths 思路:https://segmentfault.com/a/1190000016315625 阅读全文
posted @ 2019-10-30 12:33 抽象Java 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 环形链表II 思路 https://www.cnblogs.com/springfor/p/3862125.html https://blog.csdn.net/u010292561/article/details/80444057 假设周长为 S AB + BC + n*S = 2 * ( AB 阅读全文
posted @ 2019-10-29 21:23 抽象Java 阅读(126) 评论(0) 推荐(0) 编辑
摘要: package leet; import java.util.HashMap; public class longestSubstringWithoutRepeatingCharacters { static public int getAnswer(String input) { ListNode l1 = new ListNode(2); ListNode l2 = new ListNode( 阅读全文
posted @ 2019-10-25 13:14 抽象Java 阅读(143) 评论(0) 推荐(0) 编辑
摘要: java 启动jar 指定端口 java -jar xxx.jar --server.port=80 李荣先辈java简介:https://www.cnblogs.com/Jomini/p/17030392.html 阅读全文
posted @ 2019-10-25 11:02 抽象Java 阅读(32099) 评论(0) 推荐(3) 编辑
摘要: Sort_List 在LeetCode 里面,因为只有归并排序的时间复杂度为O(1),所以快速排序用不了,前面两个都没用直接看最后一个归并排序。 冒泡排序(超时了) 快速排序(在leetcode 上面还是超时间了) 归并排序 思路:https://blog.csdn.net/mine_song/ar 阅读全文
posted @ 2019-10-24 22:59 抽象Java 阅读(166) 评论(0) 推荐(0) 编辑
摘要: delete-node-in-a-linked-list 注释:这道题简直就是阅读理解 阅读全文
posted @ 2019-10-23 12:12 抽象Java 阅读(81) 评论(0) 推荐(0) 编辑
摘要: swapPairs 阅读全文
posted @ 2019-10-22 21:25 抽象Java 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 参考思路 https://github.com/azl397985856/leetcode/blob/master/problems/3.longestSubstringWithoutRepeatingCharacters.md 阅读全文
posted @ 2019-10-22 09:52 抽象Java 阅读(123) 评论(0) 推荐(0) 编辑
摘要: LeeCode String no.3-longest_Substring_Without_Repeating_Characters https://www.cnblogs.com/Jomini/p/11718072.html Array no.62-unique-paths https://www 阅读全文
posted @ 2019-10-22 09:52 抽象Java 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 启动 kafka 集群, 出现这个问题 WARN Connection to node 2 could not be established. Broker may not be available. ( vi config/server.properties 修改下面的"your local ho 阅读全文
posted @ 2019-10-12 09:55 抽象Java 阅读(3868) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 49 下一页