fix: fix some comment

This commit is contained in:
S-N-O-R-L-A-X
2022-12-23 12:08:15 +08:00
parent 0394f0c547
commit c20f7cdaac
3 changed files with 6 additions and 5 deletions

View File

@ -396,6 +396,7 @@ comments: true
=== "TypeScript"
```typescript title="linkedlist_stack.ts"
/* 基于链表实现的栈 */
class LinkedListStack {
private stackPeek: ListNode | null; // 将头结点作为栈顶
private stkSize: number = 0; // 栈的长度
@ -441,7 +442,7 @@ comments: true
return this.stackPeek.val;
}
/* 将 List 转化为 Array 并返回 */
/* 将链表转化为 Array 并返回 */
toArray(): number[] {
let node = this.stackPeek;
const res = new Array<number>(this.size);