Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Array stack in js and ts #81

Merged
merged 5 commits into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions codes/javascript/chapter_stack_and_queue/array_stack.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/**
* File: array_stack.ts
S-N-O-R-L-A-X marked this conversation as resolved.
Show resolved Hide resolved
* Created Time: 2022-12-09
* Author: S-N-O-R-L-A-X (snorlax.xu@outlook.com)
*/


/* 基于数组实现的栈 */
class ArrayStack {
stack;
constructor() {
this.stack = [];
}
/* 获取栈的长度 */
get size() {
return this.stack.length;
}

/* 判断栈是否为空 */
empty() {
return this.stack.length === 0;
}

/* 入栈 */
push(num) {
this.stack.push(num);
}

/* 出栈 */
pop() {
return this.stack.pop();
}

/* 访问栈顶元素 */
top() {
return this.stack[this.stack.length - 1];
}

/* 访问索引 index 处元素 */
get(index) {
return this.stack[index];
}

/* 返回 Array */
toArray() {
return this.stack;
}
};


/* Driver Code */

/* 初始化栈 */
const stack = new ArrayStack();

/* 元素入栈 */
stack.push(1);
stack.push(3);
stack.push(2);
stack.push(5);
stack.push(4);
console.log("栈 stack = ");
console.log(stack.toArray());

/* 访问栈顶元素 */
const top = stack.top();
console.log("栈顶元素 top = " + top);

/* 访问索引 index 处元素 */
const num = stack.get(3);
console.log("栈索引 3 处的元素为 num = " + num);

/* 元素出栈 */
const pop = stack.pop();
console.log("出栈元素 pop = " + pop + ",出栈后 stack = ");
console.log(stack.toArray());

/* 获取栈的长度 */
const size = stack.size;
console.log("栈的长度 size = " + size);

/* 判断是否为空 */
const empty = stack.empty();
console.log("栈是否为空 = " + empty);
86 changes: 86 additions & 0 deletions codes/typescript/chapter_stack_and_queue/array_stack.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/**
* File: array_stack.ts
* Created Time: 2022-12-08
* Author: S-N-O-R-L-A-X (snorlax.xu@outlook.com)
*/


/* 基于数组实现的栈 */
class ArrayStack {
private stack: number[];
constructor() {
this.stack = [];
}
/* 获取栈的长度 */
get size(): number {
return this.stack.length;
}

/* 判断栈是否为空 */
empty(): boolean {
return this.stack.length === 0;
}

/* 入栈 */
push(num: number): void {
this.stack.push(num);
}

/* 出栈 */
pop(): number | undefined {
return this.stack.pop();
}

/* 访问栈顶元素 */
top(): number | undefined {
return this.stack[this.stack.length - 1];
}

/* 访问索引 index 处元素 */
get(index: number): number | undefined {
return this.stack[index];
}

/* 返回 Array */
toArray() {
return this.stack;
}
};


/* Driver Code */

/* 初始化栈 */
const stack = new ArrayStack();

/* 元素入栈 */
stack.push(1);
stack.push(3);
stack.push(2);
stack.push(5);
stack.push(4);
console.log("栈 stack = ");
console.log(stack.toArray());

/* 访问栈顶元素 */
const top = stack.top();
console.log("栈顶元素 top = " + top);

/* 访问索引 index 处元素 */
const num = stack.get(3);
console.log("栈索引 3 处的元素为 num = " + num);

/* 元素出栈 */
const pop = stack.pop();
console.log("出栈元素 pop = " + pop + ",出栈后 stack = ");
console.log(stack.toArray());

/* 获取栈的长度 */
const size = stack.size;
console.log("栈的长度 size = " + size);

/* 判断是否为空 */
const empty = stack.empty();
console.log("栈是否为空 = " + empty);

export { };
79 changes: 79 additions & 0 deletions docs/chapter_stack_and_queue/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,13 +397,92 @@ comments: true
=== "JavaScript"

```js title="linkedlist_stack.js"
S-N-O-R-L-A-X marked this conversation as resolved.
Show resolved Hide resolved
/* 基于数组实现的栈 */
class ArrayStack {
stack;
constructor() {
this.stack = [];
}
/* 获取栈的长度 */
get size() {
return this.stack.length;
}

/* 判断栈是否为空 */
empty() {
return this.stack.length === 0;
}

/* 入栈 */
push(num) {
this.stack.push(num);
}

/* 出栈 */
pop() {
return this.stack.pop();
}

/* 访问栈顶元素 */
top() {
return this.stack[this.stack.length - 1];
}

/* 访问索引 index 处元素 */
get(index) {
return this.stack[index];
}

/* 返回 Array */
toArray() {
return this.stack;
}
};
```

=== "TypeScript"

```typescript title="linkedlist_stack.ts"
class ArrayStack {
S-N-O-R-L-A-X marked this conversation as resolved.
Show resolved Hide resolved
private stack: number[];
constructor() {
this.stack = [];
}
/* 获取栈的长度 */
get size(): number {
return this.stack.length;
}

/* 判断栈是否为空 */
empty(): boolean {
return this.stack.length === 0;
}

/* 入栈 */
push(num: number): void {
this.stack.push(num);
}

/* 出栈 */
pop(): number | undefined {
return this.stack.pop();
}

/* 访问栈顶元素 */
top(): number | undefined {
return this.stack[this.stack.length - 1];
}

/* 访问索引 index 处元素 */
get(index: number): number | undefined {
return this.stack[index];
}

/* 返回 Array */
toArray() {
return this.stack;
}
};
```

=== "C"
Expand Down