剑指 Offer 09. 用两个栈实现队列

举报
孙中明 发表于 2022/01/23 00:18:13 2022/01/23
【摘要】 题目 用两个栈实现一个队列。队列的声明如下,请实现它的两个函数 appendTail 和 deleteHead ,分别完成在队列尾部插入整数和在队列头部删除整数的功能。(若队列中没有元素,dele...

题目

用两个栈实现一个队列。队列的声明如下,请实现它的两个函数 appendTail 和 deleteHead ,分别完成在队列尾部插入整数和在队列头部删除整数的功能。(若队列中没有元素,deleteHead 操作返回 -1 )

示例 1:

输入:
["CQueue","appendTail","deleteHead","deleteHead"]
[[],[3],[],[]]
输出:[null,null,3,-1]
示例 2:

输入:
["CQueue","deleteHead","appendTail","appendTail","deleteHead","deleteHead"]
[[],[],[5],[2],[],[]]
输出:[null,-1,null,null,5,2]
提示:

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 1 <= values <= 10000
  • 最多会对 appendTail、deleteHead 进行 10000 次调用

我的答案

class CQueue {
    Stack<Integer> stk1,stk2;
    int  size;

    public CQueue() {
        //初始化
         stk1 = new Stack<Integer>();
         stk2 = new Stack<Integer>();
         size =0;
      

    }
    
    public void appendTail(int value) {
        //插入前先将栈1的全部移到栈2里面
        while(!stk1.isEmpty()){
            stk2.push(stk1.pop());
        }
        //插入元素放入到栈1
        stk1.push(value);
        //将插入的元素再从栈2移回去栈1
        while(!stk2.isEmpty()){
            stk1.push(stk2.pop());
        }
        size ++;



    }
    
    public int deleteHead() {
        //直接弹出栈1
        if(size==0) return -1;  
        int res = stk1.pop();
        size --;
        return res;

    }
}

/**
 * Your CQueue object will be instantiated and called as such:
 * CQueue obj = new CQueue();
 * obj.appendTail(value);
 * int param_2 = obj.deleteHead();
 */


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47

  • 补充栈相关

    Modifier and Type Method and Description
    boolean empty() Tests if this stack is empty.
    E peek() Looks at the object at the top of this stack without removing it from the stack.
    E pop() Removes the object at the top of this stack and returns that object as the value of this function.
    E push(E item) Pushes an item onto the top of this stack.
    int search(Object o) Returns the 1-based position where an object is on this stack.
    Modifier and Type Method and Description
    boolean empty() 测试此堆栈是否为空。
    E peek() 查看此堆栈顶部的对象,而不从堆栈中删除它。
    E pop() 删除此堆栈顶部的对象,并将该对象作为此函数的值返回。
    E push(E item) 将项目推送到此堆栈的顶部。
    int search(Object o) 返回一个对象在此堆栈上的基于1的位置。

精彩答案

使用java的同学请注意,如果你使用Stack的方式来做这道题,会造成速度较慢; 原因的话是Stack继承了Vector接口,而Vector底层是一个Object[]数组,那么就要考虑空间扩容和移位的问题了。 可以使用LinkedList来做Stack的容器,因为LinkedList实现了Deque接口,所以Stack能做的事LinkedList都能做,其本身结构是个双向链表,扩容消耗少。 但是我的意思不是像100%代码那样直接使用一个LinkedList当做队列,那确实是快,但是不符题意。 贴上代码,这样的优化之后,效率提高了40%,超过97%。


  
 
  • 1
  • 2
class CQueue {
        LinkedList<Integer> stack1;
	LinkedList<Integer> stack2;

	public CQueue() {
		stack1 = new LinkedList<>();
		stack2 = new LinkedList<>();
	}

	public void appendTail(int value) {
		stack1.add(value);
	}

	public int deleteHead() {
		if (stack2.isEmpty()) {
			if (stack1.isEmpty()) return -1;
			while (!stack1.isEmpty()) {
				stack2.add(stack1.pop());
			}
			return stack2.pop();
		} else return stack2.pop();
	}
}


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

文章来源: hiszm.blog.csdn.net,作者:孙中明,版权归原作者所有,如需转载,请联系作者。

原文链接:hiszm.blog.csdn.net/article/details/120972120

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。