摘要:
225. 用队列实现栈 题目链接:225. 用队列实现栈(简单) 题目描述 请你仅使用两个队列实现一个后入先出(LIFO)的栈,并支持普通栈的全部四种操作(push、top、pop 和 empty)。 实现 MyStack 类: void push(int x) 将元素 x 压入栈顶。 int po 阅读全文
摘要:
232. 用栈实现队列 题目链接:232. 用栈实现队列(简单) 题目描述 请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty): 实现 MyQueue 类: void push(int x) 将元素 x 推到队列的末尾 int pop() 阅读全文