7. 理论讲解:堆栈、队列(Stack、Queue)2018-11-23 本文已影响0人 博士伦2014 Stack - First In First Out (FIFO) • Array or Linked List Queue - First In Last Out (FILO) • Array or Linked List 1. Stack 入栈与出栈 2. Queue 练习题目 https://leetcode.com/problems/backspace-string-compare/description/ https://leetcode.com/problems/implement-queue-using-stacks/solution/ https://leetcode.com/problems/implement-stack-using-queues/description/ https://leetcode.com/problems/valid-parentheses/description/