基于java 用栈实现队列

基于java 用栈实现队列

题目描述

请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty):

实现 MyQueue 类:

void push(int x) 将元素 x 推到队列的末尾
int pop() 从队列的开头移除并返回元素
int peek() 返回队列开头的元素
boolean empty() 如果队列为空,返回 true ;否则,返回 false

说明:
你只能使用标准的栈操作——也就是只有 push to top, peek/pop from top, size, 和 is empty 操作是合法的。
你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。

实例

在这里插入图片描述

解答

import javautil.Stack;
class  MyQueue {
    
    

        Stack<Integer>  stack1;
        Stack<Integer>  stack2;

        public MyQueue() {
    
    
            stack1 = new Stack<>();
            stack2 = new Stack<>();
        }

        public void push(int x) {
    
    
            stack1.push(x);
        }

        public int pop() {
    
    
            if(empty()){
    
    
                return -1;
            }
            if(stack2.isEmpty()){
    
    
                while(!stack1.isEmpty()){
    
    
                    int ret = stack1.pop();
                    stack2.push(ret);
                }
            }
            return stack2.pop();
        }

        public int peek() {
    
    
            if(empty()){
    
    
                return -1;
            }
            if(stack2.isEmpty()){
    
    
                while(!stack1.isEmpty()){
    
    
                    int ret = stack1.pop();
                    stack2.push(ret);
                }
            }
            return stack2.peek();
        }

        public boolean empty() {
    
    
            if(stack1.isEmpty() && stack2.isEmpty()){
    
    
                return true;
            }
            return false;
        }
    }

结果(带测试)

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/baixian110/article/details/130891573