translation: Add the initial translation of the chapter of stack and queue (#1033)

* Update the format of Q&As in docs-en

* Fix the code comments of JavaScript and TypeScript

* Add the initial translation of the chapter of stack and queue
This commit is contained in:
Yudong Jin
2024-01-08 19:06:37 +08:00
committed by GitHub
parent c4e4a607e8
commit d3cb600910
37 changed files with 1263 additions and 76 deletions

View File

@ -6,7 +6,7 @@
/* Driver Code */
/* 初始化栈 */
// Javascript 没有内置的栈类,可以把 Array 当作栈来使用
// JavaScript 没有内置的栈类,可以把 Array 当作栈来使用
const stack = [];
/* 元素入栈 */