You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/docs/chapter_stack_and_queue/summary.md

268 B

comments
true

小结

  • 栈是一种遵循先入后出的数据结构,可以使用数组或链表实现。
  • 队列是一种遵循先入先出的数据结构,可以使用数组或链表实现。
  • 双向队列的两端都可以添加与删除元素。