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:
Yudong Jin
2024-04-03 21:05:16 +08:00
committed by GitHub
parent 043085d0ea
commit 5e2eef0b4d
5 changed files with 9 additions and 9 deletions

View File

@ -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>