Data Structure and Algorithms | 2020-05-03 Leetcode 152. Maximum Product Subarray Question Given an array, find the continuous sub-array which have the maximum ...
Java | 2020-05-02 Java Multithreading 4: yield This blog will introduce the yield() method in Thread. The content involved includes: Introduction ...
Data Structure and Algorithms | 2020-05-01 Leetcode 148. Sort List Question Sort a linked list. Required time complexity is O(nlogn). The most commonly used method ...
Java | 2020-04-29 Java Multithreading 3: Wait and notify In this blog I will introduce the thread wait/notify method. Contents include: wait(), notify(), no ...
Data Structure and Algorithms | 2020-04-28 Leetcode 147. Insertion Sort List Question Implement insertion sorting based on linked lists. Similar Questions Medium - 148. Sort ...
Java | 2020-04-27 Java Multithreading 2: Synchronized Keyword Principle of synchronizedIn Java, each object has only one synchronization lock. This also means tha ...
Java | 2020-04-26 Java Multithreading 1: Basic Concepts From today, I will start a series of blogs introducing topics related to multithreading in Java. It ...
Data Structure and Algorithms | 2020-04-24 Leetcode 142. Linked List Cycle II Question Given a linked list, determine the entry point of the loop. The entry point is essential ...
Data Structure and Algorithms | 2020-04-23 Leetcode 139. Word Break Question Give a string, and some words, and determine if the string can be composed of these words ...
Data Structure and Algorithms | 2020-04-22 Leetcode 134. Gas Station Question Just understand this question as the picture below: Each node represents the amount ...