This website requires JavaScript.
Explore
Help
Sign In
ehlxr
/
hello-algo
Watch
1
Star
0
Fork
0
You've already forked hello-algo
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
3edfe649af
hello-algo
/
docs
/
chapter_stack_and_queue
/
summary.md
krahets
33d79ea6da
Update docs for deployment on Vercel.
2022-11-22 17:47:26 +08:00
268 B
Raw
Blame
History
comments
true
小结
栈是一种遵循先入后出的数据结构,可以使用数组或链表实现。
队列是一种遵循先入先出的数据结构,可以使用数组或链表实现。
双向队列的两端都可以添加与删除元素。