4.0 KiB
4.0 KiB
comments
comments |
---|
true |
编程环境安装
(TODO 视频教程)
安装 VSCode
本书推荐使用开源轻量的 VSCode 作为本地 IDE ,下载并安装 VSCode 。
Java 环境
- 下载并安装 OpenJDK 。
- 在 VSCode 的插件市场中搜索
java
,安装 Java Extension Pack 。
C++ 环境
- Windows 系统需要安装 MinGW ,MacOS 自带 Clang 无需安装。
- 在 VSCode 的插件市场中搜索
c++
,安装 C/C++ Extension Pack 。
Python 环境
- 下载并安装 Miniconda3 。
- 在 VSCode 的插件市场中搜索
python
,安装 Python Extension Pack 。
Go 环境
- 下载并安装 go 。
- 在 VSCode 的插件市场中搜索
go
,安装 Go 。 - 快捷键
Ctrl + Shift + P
呼出命令栏,输入 go ,选择Go: Install/Update Tools
,全部勾选并安装即可。
JavaScript 环境
- 下载并安装 node.js 。
- 在 VSCode 的插件市场中搜索
javascript
,安装 JavaScript (ES6) code snippets 。
C# 环境
- 下载并安装 .Net 6.0 ;
- 在 VSCode 的插件市场中搜索
c#
,安装 c# 。
Section | C++ | Python | Go | JavaScript #120 | TypeScript #121 | C | C# | Rust #112 |
---|---|---|---|---|---|---|---|---|
Performance Evaluation |
|
|
||||||
Time Complexity |
|
|
|
|||||
Space Complexity |
|
|
||||||
Space Time Tradeoff |
|
|
@Reanon | @gyt95 | @gyt95 | |||
Array |
|
|
@IsChristina | @justin-tse | @mingXta | |||
LinkedList |
|
|
@justin-tse @IsChristina | @justin-tse | @mingXta | |||
List |
|
|
@justin-tse @IsChristina | @justin-tse | ||||
Stack | @qualifier1024 | @pengchzn | @Reanon | @S-N-O-R-L-A-X (brewing) | @S-N-O-R-L-A-X (brewing) | |||
Queue | @qualifier1024 | @pengchzn | @Reanon | @S-N-O-R-L-A-X (brewing) | @S-N-O-R-L-A-X (brewing) | |||
Deque |
|
@pengchzn | @Reanon | |||||
Hashing |
|
|
|
|||||
Hash Collision | ||||||||
Binary Tree |
|
@Reanon | @IsChristina | @justin-tse | ||||
Binary Tree Types |
|
@Reanon | @IsChristina | @justin-tse | ||||
Binary Search Tree |
|
@Reanon | @IsChristina | @justin-tse | ||||
AVL Tree | ||||||||
Linear Search |
|
@Boy-timi | ||||||
Binary Search |
|
@Boy-timi | @Slone123c | |||||
Hash Search |
|
@Boy-timi | @Slone123c | |||||
Bubble Sort |
|
@Boy-timi | @Slone123c | @IsChristina | @justin-tse | |||
Insertion Sort |
|
@Boy-timi |
|
@IsChristina | @justin-tse | |||
Quick Sort |
|
@Boy-timi |
|
@IsChristina | @justin-tse | |||
Merge Sort |
|
@Boy-timi |
|
@IsChristina | @justin-tse |