@@ -15,25 +15,22 @@ This command specifies the `english` branch and limit the depth of clone, get ri
15
15
16
16
# Table of Content
17
17
18
- * I. High Frequency Interview Problem
19
- * [ How to Implement LRU Cache] ( interview/LRU_algorithm.md )
20
- * [ How to Find Prime Number Efficiently] ( interview/Print_PrimeNumbers.md )
21
- * [ How to Calculate Minimium Edit Distance] ( dynamic_programming/EditDistance.md )
22
- * [ How to Solve Drop Water Problem] ( interview/Trapping_Rain_Water.md )
23
- * [ How to Remove Duplicate From Sorted Sequence] ( interview/RemoveDuplicatesfromSortedArray.md )
24
- * [ How to Find Longest Palindromic Substring] ( interview/TheLongestPalindromicSubstring.md )
25
- * [ How to Reverse Linked List in K Group] ( interview/reverse-nodes-in-k-group.md )
26
- * [ How to Check the Validation of Parenthesis] ( interview/valid-parentheses.md )
27
- * [ How to Find Missing Element] ( interview/missing_elements.md )
28
- * [ How to Pick Elements From a Arbitrary Sequence] ( interview/ReservoirSampling.md )
29
- * [ How to use Binary Search] ( interview/UsingBinarySearchAlgorithm.md )
30
- * [ How to Scheduling Seats] ( interview/Seatscheduling.md )
31
- * [ Union-Find Algorithm in Detail] ( think_like_computer/Union-find-Explanation.md )
32
- * [ Union-Find Application] ( think_like_computer/Union-Find-Application.md )
33
- * [ Find Sebesquence With Binary Search] ( interview/findSebesquenceWithBinarySearch.md )
34
- * [ Problems can be sloved by one line] ( interview/one-line-code-puzzles.md )
35
- * [ How to Find Dup and Missing Element] ( interview/Find-Duplicate-and-Missing-Element.md )
36
- * [ How to Check Palindrom LinkedList] ( interview/check_palindromic_linkedlist.md )
18
+ * I. Dynamic Programming
19
+ * [ Classic DP: Edit Distance] ( dynamic_programming/EditDistance.md )
20
+ * [ Classic DP: Super Egg] ( dynamic_programming/ThrowingEggsinHighBuildings.md )
21
+ * [ Classic DP: Super Egg(Advanced Solution)] ( dynamic_programming/SuperEggDropAdvanced.md )
22
+ * [ Class DP: Longest Common Subsequence] ( dynamic_programming/LongestCommonSubsequence.md )
23
+ * [ Classis DP: Game Problems] ( dynamic_programming/GameProblemsInDynamicProgramming.md )
24
+ * [ Regular Expression] ( dynamic_programming/RegularExpression.md )
25
+ * [ The Strategies of Subsequence Problem] ( dynamic_programming/StrategiesForSubsequenceProblem.md )
26
+ * [ Greedy: Interval Scheduling] ( dynamic_programming/IntervalScheduling.md )
27
+ * [ 4 Keys Keyboard] ( dynamic_programming/FourKeysKeyboard.md )
28
+ * [ What is DP Optimal Substructure] ( dynamic_programming/OptimalSubstructure.md )
29
+ * [ Longest Increasing Subsequence] ( dynamic_programming/LongestIncreasingSubsequence.md )
30
+ * [ KMP Algorithm In Detail] ( dynamic_programming/KMPCharacterMatchingAlgorithmInDynamicProgramming.md )
31
+ * [ House Robber Problems] ( dynamic_programming/HouseRobber.md )
32
+ * [ 动态规划详解] ( dynamic_programming/动态规划详解进阶.md )
33
+ * [ 团灭 LeetCode 股票买卖问题] ( dynamic_programming/团灭股票问题.md )
37
34
38
35
* II. Data Structure
39
36
* [ Binary Head and Priority Queue] ( data_structure/binary_heap_implements_priority_queues.md )
@@ -68,26 +65,29 @@ This command specifies the `english` branch and limit the depth of clone, get ri
68
65
* [ 几个反直觉的概率问题] ( think_like_computer/几个反直觉的概率问题.md )
69
66
* [ 洗牌算法] ( think_like_computer/洗牌算法.md )
70
67
71
- * IV. Dynamic Programming
72
- * [ Classic DP: Edit Distance] ( dynamic_programming/EditDistance.md )
73
- * [ Classic DP: Super Egg] ( dynamic_programming/ThrowingEggsinHighBuildings.md )
74
- * [ Classic DP: Super Egg(Advanced Solution)] ( dynamic_programming/SuperEggDropAdvanced.md )
75
- * [ Class DP: Longest Common Subsequence] ( dynamic_programming/LongestCommonSubsequence.md )
76
- * [ Classis DP: Game Problems] ( dynamic_programming/GameProblemsInDynamicProgramming.md )
77
- * [ Regular Expression] ( dynamic_programming/RegularExpression.md )
78
- * [ The Strategies of Subsequence Problem] ( dynamic_programming/StrategiesForSubsequenceProblem.md )
79
- * [ Greedy: Interval Scheduling] ( dynamic_programming/IntervalScheduling.md )
80
- * [ 4 Keys Keyboard] ( dynamic_programming/FourKeysKeyboard.md )
81
- * [ What is DP Optimal Substructure] ( dynamic_programming/OptimalSubstructure.md )
82
- * [ Longest Increasing Subsequence] ( dynamic_programming/LongestIncreasingSubsequence.md )
83
- * [ KMP Algorithm In Detail] ( dynamic_programming/KMPCharacterMatchingAlgorithmInDynamicProgramming.md )
84
- * [ House Robber Series] ( dynamic_programming/HouseRobber.md )
85
- * [ 动态规划详解] ( dynamic_programming/动态规划详解进阶.md )
86
- * [ 团灭 LeetCode 股票买卖问题] ( dynamic_programming/团灭股票问题.md )
68
+ * IV. High Frequency Interview Problem
69
+ * [ How to Implement LRU Cache] ( interview/LRU_algorithm.md )
70
+ * [ How to Find Prime Number Efficiently] ( interview/Print_PrimeNumbers.md )
71
+ * [ How to Calculate Minimium Edit Distance] ( dynamic_programming/EditDistance.md )
72
+ * [ How to Solve Drop Water Problem] ( interview/Trapping_Rain_Water.md )
73
+ * [ How to Remove Duplicate From Sorted Sequence] ( interview/RemoveDuplicatesfromSortedArray.md )
74
+ * [ How to Find Longest Palindromic Substring] ( interview/TheLongestPalindromicSubstring.md )
75
+ * [ How to Reverse Linked List in K Group] ( interview/reverse-nodes-in-k-group.md )
76
+ * [ How to Check the Validation of Parenthesis] ( interview/valid-parentheses.md )
77
+ * [ How to Find Missing Element] ( interview/missing_elements.md )
78
+ * [ How to Pick Elements From a Arbitrary Sequence] ( interview/ReservoirSampling.md )
79
+ * [ How to use Binary Search] ( interview/UsingBinarySearchAlgorithm.md )
80
+ * [ How to Scheduling Seats] ( interview/Seatscheduling.md )
81
+ * [ Union-Find Algorithm in Detail] ( think_like_computer/Union-find-Explanation.md )
82
+ * [ Union-Find Application] ( think_like_computer/Union-Find-Application.md )
83
+ * [ Find Sebesquence With Binary Search] ( interview/findSebesquenceWithBinarySearch.md )
84
+ * [ Problems can be sloved by one line] ( interview/one-line-code-puzzles.md )
85
+ * [ How to Find Dup and Missing Element] ( interview/Find-Duplicate-and-Missing-Element.md )
86
+ * [ How to Check Palindrom LinkedList] ( interview/check_palindromic_linkedlist.md )
87
87
88
88
* V. Common Knowledge
89
89
* [ Difference Between Process and Thread in Linux] ( common_knowledge/linuxProcess.md )
90
90
* [ You Must Know About Linux Shell] ( common_knowledge/linuxshell.md )
91
91
* [ You Must Know About Cookie and Session] ( common_knowledge/SessionAndCookie.md )
92
92
* [ Cryptology Algorithm] ( common_knowledge/Cryptology.md )
93
- * [ Some Good Online Pratice Platforms] ( common_knowledge/OnlinePraticePlatform.md )
93
+ * [ Some Good Online Pratice Platforms] ( common_knowledge/OnlinePraticePlatform.md )
0 commit comments