From e8554975f413c80aa623a1775d50e9a542085383 Mon Sep 17 00:00:00 2001 From: Horbin <46142827+Horbin-Magician@users.noreply.github.com> Date: Wed, 13 Sep 2023 03:25:20 +0800 Subject: [PATCH] Update what_is_dsa.md (#745) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update what_is_dsa.md 优化了语句表达 * Update what_is_dsa.md --------- Co-authored-by: Yudong Jin --- docs/chapter_introduction/what_is_dsa.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_introduction/what_is_dsa.md b/docs/chapter_introduction/what_is_dsa.md index b8545e1e0..f70e769cd 100644 --- a/docs/chapter_introduction/what_is_dsa.md +++ b/docs/chapter_introduction/what_is_dsa.md @@ -27,7 +27,7 @@ - 数据结构是算法的基石。数据结构为算法提供了结构化存储的数据,以及用于操作数据的方法。 - 算法是数据结构发挥作用的舞台。数据结构本身仅存储数据信息,结合算法才能解决特定问题。 -- 算法通常可以基于不同的数据结构进行实现,并往往有对应最优的数据结构,但最终执行效率可能相差很大。 +- 算法通常可以基于不同的数据结构进行实现,但执行效率可能相差很大,选择合适的数据结构是关键。 ![数据结构与算法的关系](what_is_dsa.assets/relationship_between_data_structure_and_algorithm.png)