This website requires JavaScript.
Explore
Help
Register
Sign In
learning
/
hello-algo
mirror of
https://github.com/krahets/hello-algo.git
Watch
1
Star
0
Fork
You've already forked hello-algo
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
694ea4f665
hello-algo
/
docs
/
chapter_stack_and_queue
/
summary.md
268 B
Raw
Blame
History
comments
true
小结
栈是一种遵循先入后出的数据结构,可以使用数组或链表实现。
队列是一种遵循先入先出的数据结构,可以使用数组或链表实现。
双向队列的两端都可以添加与删除元素。