We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e12c0c0 commit 80ab6e3Copy full SHA for 80ab6e3
README.md
@@ -29,13 +29,16 @@
29
- [后序遍历](https://github.com/keepalive555/algorithm/blob/master/tree/postorder_traversal.go)
30
31
## 子串&子序列问题
32
-- [最长公共子序列]()
33
-- [最长公共子串]()
34
-- [最长递增子序列]()
35
-- [最大子序列之和]()
+- [最长公共子序列](https://github.com/keepalive555/algorithm/blob/master/sequence/longest_common_subsequence.go)
+- [最长递增子序列](https://github.com/keepalive555/algorithm/blob/master/sequence/longest_palindromic_subsequence.go)
36
- [最长回文子序列]()
+- [最大子序列之和]()
37
- [回文串个数]()
38
+## 经典问题
39
+- [TopK问题](https://github.com/keepalive555/algorithm/blob/master/classics/topk.go)
40
+- [大文件排序](https://github.com/keepalive555/algorithm/blob/master/classics/big_data_sort.go)
41
+
42
## LeetCode
43
### 位运算
44
- [UTF-8编码验证](https://github.com/keepalive555/algorithm/blob/master/leetcode/393.go)
0 commit comments