01. 堆栈基础知识 #140
01. 堆栈基础知识
#140
Replies: 4 comments
-
勘误,链式栈的图片不太对吧?从左到右是a5到a1 |
Beta Was this translation helpful? Give feedback.
0 replies
-
后两张图片无法显示 |
Beta Was this translation helpful? Give feedback.
0 replies
-
这里建议中文直接写栈,不然容易跟堆搞混 |
Beta Was this translation helpful? Give feedback.
0 replies
-
"堆栈是算法和程序中最常用的辅助结构,其的应用十分广泛。堆栈基本应用于两个方面: 使用堆栈可以很方便的保存和取用信息,因此长被用作算法和程序中的辅助存储结构,临时保存信息,供后面操作中使用。" 上面有个别字:“因此长被用作”。 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
01. 堆栈基础知识
堆栈基础知识 1. 堆栈简介 堆栈(Stack):简称为栈。一种线性表数据结构,是一种只允许在表的一端进行插入和删除操作的线性表。 我们把栈中允许插入和删除的一端称为 「栈顶(top)」;另一端则称为 「栈底(bottom)」。当表中没有任何数据元素时,称之为 「空栈」。 堆栈有两种基本操作:「插入操作」 和 「删除操作」。 栈的插入操作又称为「入栈」...
https://algo.itcharge.cn/03.Stack/01.Stack-Basic/01.Stack-Basic/
Beta Was this translation helpful? Give feedback.
All reactions