Skip to content

Commit bcc87cb

Browse files
committed
修正图片错误
1 parent f9c2d0a commit bcc87cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/03_stack_queue_hash_table/03_01_stack_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class Stack:
9797

9898
### 2.2 链式栈(链表实现)
9999

100-
![栈的链式存储](https://qcdn.itcharge.cn/images/202405092243367.png)
100+
![栈的链式存储](https://qcdn.itcharge.cn/images/202509292200369.png)
101101

102102
顺序栈在存储空间上存在一定局限性:当栈满或需要扩容时,往往需要移动大量元素,效率较低。为了解决这一问题,可以采用链式存储结构实现栈。在 Python 中,我们通常通过自定义链表节点 $Node$ 来实现链式栈。采用链式存储结构的栈被称为 **「链式栈」**
103103

0 commit comments

Comments
 (0)