Add installation steps for Go and JavaScript.

This commit is contained in:
Yudong Jin 2022-12-04 16:25:40 +08:00
parent 480f70366c
commit 3252b829e1
2 changed files with 22 additions and 5 deletions

View File

@ -14,15 +14,21 @@ stack.push(3);
stack.push(2); stack.push(2);
stack.push(5); stack.push(5);
stack.push(4); stack.push(4);
console.log("栈 stack =", stack)
/* 访问栈顶元素 */ /* 访问栈顶元素 */
const peek = stack[stack.length - 1]; const peek = stack[stack.length - 1];
console.log("栈顶元素 peek =", peek)
/* 元素出栈 */ /* 元素出栈 */
const pop = stack.pop(); const pop = stack.pop();
console.log("出栈元素 pop =", pop)
console.log("出栈后 stack =", stack)
/* 获取栈的长度 */ /* 获取栈的长度 */
const size = stack.length; const size = stack.length;
console.log("栈的长度 size =", size)
/* 判断是否为空 */ /* 判断是否为空 */
const is_empty = stack.length === 0; const is_empty = stack.length === 0;
console.log("栈是否为空 =", is_empty)

View File

@ -10,11 +10,6 @@ comments: true
本书推荐使用开源轻量的 VSCode 作为本地 IDE ,下载并安装 [VSCode](https://code.visualstudio.com/) 。 本书推荐使用开源轻量的 VSCode 作为本地 IDE ,下载并安装 [VSCode](https://code.visualstudio.com/) 。
## Python 环境
1. 下载并安装 [Miniconda3](https://docs.conda.io/en/latest/miniconda.html) ,获取 Python 运行环境。
2. 在 VSCode 的插件市场中搜索 `python` ,安装 Python Extension Pack 。
## Java 环境 ## Java 环境
1. 下载并安装 [OpenJDK](https://jdk.java.net/18/) ,获取 Java 运行环境。 1. 下载并安装 [OpenJDK](https://jdk.java.net/18/) ,获取 Java 运行环境。
@ -24,3 +19,19 @@ comments: true
1. Windows 系统需要安装 [MinGW](https://www.mingw-w64.org/downloads/) MacOS 自带 Clang 无需安装。 1. Windows 系统需要安装 [MinGW](https://www.mingw-w64.org/downloads/) MacOS 自带 Clang 无需安装。
2. 在 VSCode 的插件市场中搜索 `c++` ,安装 C/C++ Extension Pack 。 2. 在 VSCode 的插件市场中搜索 `c++` ,安装 C/C++ Extension Pack 。
## Python 环境
1. 下载并安装 [Miniconda3](https://docs.conda.io/en/latest/miniconda.html) ,获取 Python 运行环境。
2. 在 VSCode 的插件市场中搜索 `python` ,安装 Python Extension Pack 。
## Go 环境
1. 下载并安装 [go](https://go.dev/dl/) ,获取 Go 运行环境。
2. 在 VSCode 的插件市场中搜索 `go` ,安装 Go 。
3. 快捷键 `Ctrl + Shift + P` 呼出命令栏,输入 go ,选择 `Go: Install/Update Tools` ,全部勾选并安装即可。
## JavaScript 环境
1. 下载并安装 [node.js](https://nodejs.org/en/) ,获取 JavaScript 运行环境。
2. 在 VSCode 的插件市场中搜索 `javascript` ,安装 JavaScript (ES6) code snippets 。