摘要:
Basic Java Interview Questions Q1. Explain JDK, JRE and JVM? JDK vs JRE vs JVM Q2. Explain public static void main(String args[]). public : Public is 阅读全文
摘要:
Prior to Java 8, HashMap and all other hash table based Map implementation classes in Java handle collision by chaining, i.e. they use linked list to 阅读全文
摘要:
https://www.javatpoint.com/java-multithreading-interview-questions 1) What is multithreading? Multithreading is a process of executing multiple thread 阅读全文
摘要:
https://dzone.com/articles/how-springboot-autoconfiguration-magic-works In my previous post "Why Spring Boot?", we looked at how to create a Spring Bo 阅读全文
摘要:
最长回文,谁能解释一下下面这个解法? Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Inpu 阅读全文