1. 程式人生 > >用隊列實現棧

用隊列實現棧

size nbsp https poll() ise 就是 new tco urn

小結:

1、

借助linkedlist,每次添加元素後,反轉,取逆序

Implement Stack using Queues - LeetCode
https://leetcode.com/problems/implement-stack-using-queues/solution/

Implement Stack using Queues - LeetCode Articles
https://leetcode.com/articles/implement-stack-using-queues/

使用隊列實現棧的下列操作:

  • push(x) -- 元素 x 入棧
  • pop() -- 移除棧頂元素
  • top() -- 獲取棧頂元素
  • empty() -- 返回棧是否為空

註意:

  • 你只能使用隊列的基本操作-- 也就是 push to back, peek/pop from front, size, 和 is empty 這些操作是合法的。
  • 你所使用的語言也許不支持隊列。 你可以使用 list 或者 deque(雙端隊列)來模擬一個隊列 , 只要是標準的隊列操作即可。
  • 你可以假設所有操作都是有效的(例如, 對一個空的棧不會調用 pop 或者 top 操作)。

Approach #1 (Two Queues, push - O(1), pop O(n))

技術分享圖片

Approach #2 (Two Queues, push - O(n), pop O(1) )

技術分享圖片

Approach #3 (One Queue, push - O(n), pop O(1))

技術分享圖片

package leetcode;

import java.util.LinkedList;
import java.util.Queue;

class MyStack {

//one Queue solution
private Queue<Integer> q = new LinkedList<Integer>();

public static void main(String[] args) {
MyStack myStack = new MyStack();
myStack.push(-2);
myStack.push(0);
myStack.push(-3);
myStack.push(13);
myStack.pop();
myStack.top();
}

// Push element x onto stack.
public void push(int x) {
q.add(x);
for (int i = 1; i < q.size(); i++) { //rotate the queue to make the tail be the head
q.add(q.poll());
}
}

// Removes the element on top of the stack.
public int pop() {
return q.poll();
}

// Get the top element.
public int top() {
return q.peek();
}

// Return whether the stack is empty.
public boolean empty() {
return q.isEmpty();
}
}

用隊列實現棧