[LeetCode] 232. Implement Queue using Stacks Java

题目:

Implement the following operations of a queue using stacks.

  • push(x) -- Push element x to the back of queue.
  • pop() -- Removes the element from in front of queue.
  • peek() -- Get the front element.
  • empty() -- Return whether the queue is empty.

Notes:

  • You must use only standard operations of a stack -- which means only push to toppeek/pop from topsize, and is empty operations are valid.
  • Depending on your language, stack may not be supported natively. You may simulate a stack by using a list or deque (double-ended queue), as long as you use only standard operations of a stack.
  • You may assume that all operations are valid (for example, no pop or peek operations will be called on an empty queue).

题意及分析:使用stack实现queue的功能。这里对于queue的push和enpty操作来说,和stack一样就行。对于pop和peek,由于stack是pop和peek都是从队尾来讲,然而queue是要的这两个操作时对于队首的元素来讲。所以这里需要使用另一个stack来讲当前stack倒序添加进新stack,对于最后一个元素 取值或者去掉,然后在将新stack倒序回去即可。具体看代码:

代码:

public class MyQueue {

    Stack<Integer> stack;
    /** Initialize your data structure here. */
    public MyQueue() {
        stack = new Stack<>();
    }

    /** Push element x to the back of queue. */
    public void push(int x) {
    	stack.push(x);

    }

    /** Removes the element from in front of queue and returns that element. */
    public int pop() {
    	Stack<Integer> tempStack=new Stack<>();
    	int lenght=stack.size();
    	for(int i=0;i<lenght-1;i++){
    		tempStack.push(stack.peek());
    		stack.pop();
    	}
    	int res=stack.peek();
    	stack.pop();
    	int tempSize=tempStack.size();
    	for(int i=0;i<tempSize;i++){
    		stack.push(tempStack.peek());
    		tempStack.pop();
    	}
    	return res;
    }

    /** Get the front element. */
    public int peek() {
    	Stack<Integer> tempStack=new Stack<>();
    	int lenght=stack.size();
    	for(int i=0;i<lenght-1;i++){
    		tempStack.push(stack.peek());
    		stack.pop();
    	}
    	int res=stack.peek();
    	stack.pop();
    	tempStack.push(res);
    	int tempSize=tempStack.size();
    	for(int i=0;i<tempSize;i++){
    		stack.push(tempStack.peek());
    		tempStack.pop();
    	}
    	return res;
    }

    /** Returns whether the queue is empty. */
    public boolean empty() {
        return stack.isEmpty();
    }
}

/**
 * Your MyQueue object will be instantiated and called as such:
 * MyQueue obj = new MyQueue();
 * obj.push(x);
 * int param_2 = obj.pop();
 * int param_3 = obj.peek();
 * boolean param_4 = obj.empty();
 */

  

时间: 2024-08-05 11:12:15

[LeetCode] 232. Implement Queue using Stacks Java的相关文章

Leetcode 232 Implement Queue using Stacks 和 231 Power of Two

1. 232 Implement Queue using Stacks 1.1 问题描述 使用栈模拟实现队列.模拟实现如下操作: push(x). 将元素x放入队尾. pop(). 移除队首元素. peek(). 获取队首元素. empty(). 判断队列是否为空. 注意:只能使用栈的标准操作,push,pop,size和empty函数. 1.2 方法与思路 本题和用队列实现栈思路一样,设两个辅助栈stk1和stk2. push(x): 将x入栈stk1. pop(): 依次将stk1中的元素p

Java [Leetcode 232]Implement Queue using Stacks

题目描述: Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whether the queue is empty. Note

LeetCode 232 Implement Queue using Stacks(用栈来实现队列)(*)

翻译 用栈来实现队列的下列操作. push(x) -- 将元素x写入到队列的尾部 pop() -- 从队列首部移除元素 peek() -- 返回队列首部元素 empty() -- 返回队列是否为空 注意: 你必须使用一个只有标准操作的栈. 也就是说,只有push/pop/size/empty等操作是有效的. 栈可能不被原生支持,这取决于你所用的语言. 只要你只是用stack的标准操作,你可以用list或者deque(double-ended queue)来模拟栈. 你可以假设所有的操作都是有效的

[LeetCode] 232. Implement Queue using Stacks 用栈来实现队列

Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whether the queue is empty. Notes: You

[LeetCode] 232 - Implement Queue using Stacks

Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whether the queue is empty. Notes: You

232. Implement Queue using Stacks Java Solutions

Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whether the queue is empty. Notes: You

(easy)LeetCode 232.Implement Queue using Stacks

Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whether the queue is empty. Notes: You

Java for LeetCode 232 Implement Queue using Stacks

Stack<Integer> stack=new Stack<Integer>(); public void push(int x) { stack.push(x); } // Removes the element from in front of queue. public void pop() { stack.remove(0); } // Get the front element. public int peek() { return stack.get(0); } //

232. Implement Queue using Stacks &amp;&amp; 225. Implement Stack using Queues

232. Implement Queue using Stacks Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- Removes the element from in front of queue. peek() -- Get the front element. empty() -- Return whet