diff --git a/codes/javascript/chapter_stack_and_queue/stack.js b/codes/javascript/chapter_stack_and_queue/stack.js index 9afbdc2..1d49449 100644 --- a/codes/javascript/chapter_stack_and_queue/stack.js +++ b/codes/javascript/chapter_stack_and_queue/stack.js @@ -14,15 +14,21 @@ stack.push(3); stack.push(2); stack.push(5); stack.push(4); +console.log("栈 stack =", stack) /* 访问栈顶元素 */ const peek = stack[stack.length - 1]; +console.log("栈顶元素 peek =", peek) /* 元素出栈 */ const pop = stack.pop(); +console.log("出栈元素 pop =", pop) +console.log("出栈后 stack =", stack) /* 获取栈的长度 */ const size = stack.length; +console.log("栈的长度 size =", size) /* 判断是否为空 */ const is_empty = stack.length === 0; +console.log("栈是否为空 =", is_empty) diff --git a/docs/chapter_preface/installation.md b/docs/chapter_preface/installation.md index 51e9567..05919c3 100644 --- a/docs/chapter_preface/installation.md +++ b/docs/chapter_preface/installation.md @@ -10,11 +10,6 @@ comments: true 本书推荐使用开源轻量的 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 环境 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 无需安装。 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 。