原创 Java Hotspot G1 GC的一些關鍵技術

原文:https://zhuanlan.zhihu.com/p/22591838G1 GC,全稱Garbage-First Garbage Collector,通過-XX:+UseG1GC參數來啓用,作爲體驗版隨着JDK 6u14版本面世,

原创 <JVM> 關於GC的一些文章鏈接

第二章jdk8工具集https://docs.oracle.com/javase/8/docs/technotes/tools/unix/index.htmlTroubleshootinghttps://docs.oracle.com/ja

原创 LeetCode <Stack>84&85. Maximal Rectangle&Largest Rectangle in Histogram

84.Largest Rectangle in HistogramGiven n non-negative integers representing the histogram's bar height where the width o

原创 求最長的公共子串

1.求最長的公共子串給定兩個字符串str1和str2,返回兩個字符串的最長公共子串例如:str1 = "1AB2345CD",str2 = "12345EF" 最長的子串是“2345”解法一:這是一個基本的動態規劃解法,時間複雜度是O(N*