Fix multilingual content typos (#1958)

This commit is contained in:
Yudong Jin
2026-08-18 03:08:23 +08:00
committed by GitHub
parent 69932aed18
commit bf86c39b6c
201 changed files with 289 additions and 271 deletions
@@ -20,7 +20,7 @@ VS Code 擁有強大的擴展包生態系統,支持大多數程式語言的執
### C/C++ 環境
1. Windows 系統需要安裝 [MinGW](https://sourceforge.net/projects/mingw-w64/files/)[配置教程](https://blog.csdn.net/qq_33698226/article/details/129031241));MacOS 自帶 Clang ,無須安裝。
1. Windows 系統需要安裝 [MinGW](https://sourceforge.net/projects/mingw-w64/files/)[配置教程](https://blog.csdn.net/qq_33698226/article/details/129031241));macOS 自帶 Clang ,無須安裝。
2. 在 VS Code 的擴充功能市場中搜索 `c++` ,安裝 C/C++ Extension Pack 。
3. (可選)開啟 Settings 頁面,搜尋 `Clang_format_fallback Style` 程式碼格式化選項,設定為 `{ BasedOnStyle: Microsoft, BreakBeforeBraces: Attach }`
@@ -31,7 +31,7 @@ VS Code 擁有強大的擴展包生態系統,支持大多數程式語言的執
### C# 環境
1. 下載並安裝 [.Net 8.0](https://dotnet.microsoft.com/en-us/download) 。
1. 下載並安裝 [.NET 8.0](https://dotnet.microsoft.com/en-us/download) 。
2. 在 VS Code 的擴充功能市場中搜索 `C# Dev Kit` ,安裝 C# Dev Kit [配置教程](https://code.visualstudio.com/docs/csharp/get-started))。
3. 也可使用 Visual Studio[安裝教程](https://learn.microsoft.com/zh-cn/visualstudio/install/install-visual-studio?view=vs-2022))。
+3 -1
View File
@@ -80,7 +80,9 @@
| level-order traversal | 層序走訪 |
| breadth-first traversal | 廣度優先走訪 |
| depth-first traversal | 深度優先走訪 |
| binary search tree | 二元搜尋樹 |
| pre-order traversal | 前序走訪 |
| in-order traversal | 中序走訪 |
| post-order traversal | 後序走訪 |
| balanced binary search tree | 平衡二元搜尋樹 |
| balance factor | 平衡因子 |
| heap | 堆積 |