mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-19 06:50:59 +00:00
deploy
This commit is contained in:
@@ -4902,7 +4902,7 @@
|
||||
</ol>
|
||||
<h3 id="2-cc">2. C/C++ 環境<a class="headerlink" href="#2-cc" title="Permanent link">¶</a></h3>
|
||||
<ol>
|
||||
<li>Windows 系統需要安裝 <a href="https://sourceforge.net/projects/mingw-w64/files/">MinGW</a>(<a href="https://blog.csdn.net/qq_33698226/article/details/129031241">配置教程</a>);MacOS 自帶 Clang ,無須安裝。</li>
|
||||
<li>Windows 系統需要安裝 <a href="https://sourceforge.net/projects/mingw-w64/files/">MinGW</a>(<a href="https://blog.csdn.net/qq_33698226/article/details/129031241">配置教程</a>);macOS 自帶 Clang ,無須安裝。</li>
|
||||
<li>在 VS Code 的擴充功能市場中搜索 <code>c++</code> ,安裝 C/C++ Extension Pack 。</li>
|
||||
<li>(可選)開啟 Settings 頁面,搜尋 <code>Clang_format_fallback Style</code> 程式碼格式化選項,設定為 <code>{ BasedOnStyle: Microsoft, BreakBeforeBraces: Attach }</code> 。</li>
|
||||
</ol>
|
||||
@@ -4913,7 +4913,7 @@
|
||||
</ol>
|
||||
<h3 id="4-c">4. C# 環境<a class="headerlink" href="#4-c" title="Permanent link">¶</a></h3>
|
||||
<ol>
|
||||
<li>下載並安裝 <a href="https://dotnet.microsoft.com/en-us/download">.Net 8.0</a> 。</li>
|
||||
<li>下載並安裝 <a href="https://dotnet.microsoft.com/en-us/download">.NET 8.0</a> 。</li>
|
||||
<li>在 VS Code 的擴充功能市場中搜索 <code>C# Dev Kit</code> ,安裝 C# Dev Kit (<a href="https://code.visualstudio.com/docs/csharp/get-started">配置教程</a>)。</li>
|
||||
<li>也可使用 Visual Studio(<a href="https://learn.microsoft.com/zh-cn/visualstudio/install/install-visual-studio?view=vs-2022">安裝教程</a>)。</li>
|
||||
</ol>
|
||||
|
||||
@@ -4867,8 +4867,16 @@
|
||||
<td>深度優先走訪</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>binary search tree</td>
|
||||
<td>二元搜尋樹</td>
|
||||
<td>pre-order traversal</td>
|
||||
<td>前序走訪</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>in-order traversal</td>
|
||||
<td>中序走訪</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>post-order traversal</td>
|
||||
<td>後序走訪</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>balanced binary search tree</td>
|
||||
|
||||
Reference in New Issue
Block a user