@@ -15,6 +15,71 @@ image::images/dynamic-programming-01.jpeg[{image_attr}]
15
15
. 确定遍历顺序
16
16
. 举例推导 dp 数组
17
17
18
+ == 入门题目
19
+
20
+
21
+ . xref:0070-climbing-stairs.adoc[70. Climbing Stairs]
22
+ . xref:0509-fibonacci-number.adoc[509. Fibonacci Number]
23
+ . xref:1137-n-th-tribonacci-number.adoc[1137. N-th Tribonacci Number]
24
+ . xref:0746-min-cost-climbing-stairs.adoc[746. Min Cost Climbing Stairs]
25
+ . xref:0198-house-robber.adoc[198. House Robber]
26
+ . xref:0213-house-robber-ii.adoc[213. House Robber II]
27
+ . xref:0337-house-robber-iii.adoc[337. House Robber III]
28
+ . xref:2560-house-robber-iv.adoc[2560. House Robber IV]
29
+ . xref:0740-delete-and-earn.adoc[740. Delete and Earn]
30
+ . xref:0062-unique-paths.adoc[62. Unique Paths]
31
+ . xref:0063-unique-paths-ii.adoc[63. Unique Paths II]
32
+ . xref:0980-unique-paths-iii.adoc[980. Unique Paths III]
33
+ . xref:0064-minimum-path-sum.adoc[64. Minimum Path Sum]
34
+ . xref:0120-triangle.adoc[120. Triangle]
35
+ . xref:0931-minimum-falling-path-sum.adoc[931. Minimum Falling Path Sum]
36
+ . xref:1289-minimum-falling-path-sum-ii.adoc[1289. Minimum Falling Path Sum II]
37
+ . xref:0221-maximal-square.adoc[221. Maximal Square]
38
+ . xref:0005-longest-palindromic-substring.adoc[5. Longest Palindromic Substring]
39
+ . xref:0139-word-break.adoc[139. Word Break]
40
+ . xref:0140-word-break-ii.adoc[140. Word Break II]
41
+ . xref:0516-longest-palindromic-subsequence.adoc[516. Longest Palindromic Subsequence]
42
+ . xref:1682-longest-palindromic-subsequence-ii.adoc[1682. Longest Palindromic Subsequence II]
43
+ . xref:0072-edit-distance.adoc[72. Edit Distance]
44
+ . xref:0712-minimum-ascii-delete-sum-for-two-strings.adoc[712. Minimum ASCII Delete Sum for Two Strings]
45
+ . xref:0115-distinct-subsequences.adoc[115. Distinct Subsequences]
46
+ . xref:0940-distinct-subsequences-ii.adoc[940. Distinct Subsequences II]
47
+ . xref:0300-longest-increasing-subsequence.adoc[300. Longest Increasing Subsequence]
48
+ . xref:2407-longest-increasing-subsequence-ii.adoc[2407. Longest Increasing Subsequence II]
49
+ . xref:0673-number-of-longest-increasing-subsequence.adoc[673. Number of Longest Increasing Subsequence]
50
+ . xref:0646-maximum-length-of-pair-chain.adoc[646. Maximum Length of Pair Chain]
51
+ . xref:1218-longest-arithmetic-subsequence-of-given-difference.adoc[1218. Longest Arithmetic Subsequence of Given Difference]
52
+ . xref:1027-longest-arithmetic-subsequence.adoc[1027. Longest Arithmetic Subsequence]
53
+ . xref:0354-russian-doll-envelopes.adoc[354. Russian Doll Envelopes]
54
+ . xref:1964-find-the-longest-valid-obstacle-course-at-each-position.adoc[题解]
55
+ . xref:1143-longest-common-subsequence.adoc[1143. Longest Common Subsequence]
56
+ . xref:1035-uncrossed-lines.adoc[1035. Uncrossed Lines]
57
+ . xref:1312-minimum-insertion-steps-to-make-a-string-palindrome.adoc[1312. Minimum Insertion Steps to Make a String Palindrome]
58
+ . xref:0309-best-time-to-buy-and-sell-stock-with-cooldown.adoc[309. Best Time to Buy and Sell Stock with Cooldown]
59
+ . xref:0714-best-time-to-buy-and-sell-stock-with-transaction-fee.adoc[714. Best Time to Buy and Sell Stock with Transaction Fee]
60
+ . xref:0123-best-time-to-buy-and-sell-stock-iii.adoc[123. Best Time to Buy and Sell Stock III]
61
+ . xref:0188-best-time-to-buy-and-sell-stock-iv.adoc[188. Best Time to Buy and Sell Stock IV]
62
+ . xref:0096-unique-binary-search-trees.adoc[96. Unique Binary Search Trees]
63
+ . xref:0095-unique-binary-search-trees-ii.adoc[95. Unique Binary Search Trees II]
64
+ . xref:0124-binary-tree-maximum-path-sum.adoc[124. Binary Tree Maximum Path Sum]
65
+ . xref:0279-perfect-squares.adoc[279. Perfect Squares]
66
+ . xref:0367-valid-perfect-square.adoc[题解]
67
+ . xref:0322-coin-change.adoc[322. Coin Change]
68
+ . xref:0518-coin-change-ii.adoc[518. Coin Change II]
69
+ . xref:0377-combination-sum-iv.adoc[377. Combination Sum IV]
70
+ . xref:0474-ones-and-zeroes.adoc[474. Ones and Zeroes]
71
+ . xref:2140-solving-questions-with-brainpower.adoc[2140. Solving Questions With Brainpower]
72
+ . xref:2466-count-ways-to-build-good-strings.adoc[2466. Count Ways To Build Good Strings]
73
+ . xref:0091-decode-ways.adoc[91. Decode Ways]
74
+ . xref:0639-decode-ways-ii.adoc[639. Decode Ways II]
75
+ . xref:0983-minimum-cost-for-tickets.adoc[983. Minimum Cost For Tickets]
76
+ . xref:0790-domino-and-tromino-tiling.adoc[790. Domino and Tromino Tiling]
77
+
78
+
79
+ == 进阶
80
+
81
+
82
+
18
83
== 经典题目
19
84
20
85
. xref:0005-longest-palindromic-substring.adoc[5. Longest Palindromic Substring]
0 commit comments