mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
Adding the chapter of hello_algo and bug fixes (#1217)
* Add the chapter of hello_algo * Remove the comment field from the landing page * Update the link in the landing page * Fix a typo * Bug fiixes * Fix the bug of underlined terms * Fix the format of English terms * Fix "静态数据结构" vs. "动态数据结构" in classification_of_data_structure.md
This commit is contained in:
@ -93,7 +93,7 @@ $$
|
||||
|
||||
根据以上内容,我们可以总结出动态规划的常用术语。
|
||||
|
||||
- 将数组 `dp` 称为<u>$dp$(表)</u>,$dp[i]$ 表示状态 $i$ 对应子问题的解。
|
||||
- 将数组 `dp` 称为 <u>dp 表</u>,$dp[i]$ 表示状态 $i$ 对应子问题的解。
|
||||
- 将最小子问题对应的状态(第 $1$ 阶和第 $2$ 阶楼梯)称为<u>初始状态</u>。
|
||||
- 将递推公式 $dp[i] = dp[i-1] + dp[i-2]$ 称为<u>状态转移方程</u>。
|
||||
|
||||
|
||||
Reference in New Issue
Block a user