We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c2d0a commit bcc87cbCopy full SHA for bcc87cb
docs/03_stack_queue_hash_table/03_01_stack_basic.md
@@ -97,7 +97,7 @@ class Stack:
97
98
### 2.2 链式栈(链表实现)
99
100
-
+
101
102
顺序栈在存储空间上存在一定局限性:当栈满或需要扩容时,往往需要移动大量元素,效率较低。为了解决这一问题,可以采用链式存储结构实现栈。在 Python 中,我们通常通过自定义链表节点 $Node$ 来实现链式栈。采用链式存储结构的栈被称为 **「链式栈」**。
103
0 commit comments