标签:front removes image ack @param using function 前端 标准
使用队列实现栈的下列操作:
注意:
我们都知道,栈是“先进后出”的数据结构,栈内元素从顶端压入(push),从顶端弹出(pop)。队列与栈相反,是“先进先出”的数据结构,队列中元素只能从后端(rear)入队(push),然后从前端(front)端出队(pop)。
这里用的是数组表示队列,空间复杂度O(n),时间复杂度分push 和 pop ,前者是O(1),后者是O(n)。
class MyStack {
/**
* Initialize your data structure here.
*/
function __construct() {
$this->q1 = [];
$this->q2 = [];
}
/**
* Push element x onto stack.
* @param Integer $x
* @return NULL
*/
function push($x) {
$this->q1[] = $x;
}
/**
* Removes the element on top of the stack and returns that element.
* @return Integer
*/
function pop() {
while(count($this->q1) > 1) {
$this->q2[] = array_shift($this->q1);
}
$top = array_shift($this->q1);
$this->q1 = $this->q2;
$this->q2 = [];
return $top;
}
/**
* Get the top element.
* @return Integer
*/
function top() {
return end($this->q1);
}
/**
* Returns whether the stack is empty.
* @return Boolean
*/
function empty() {
return empty($this->q1) ? true : false;
}
}
用一个队列,将新元素压入队尾,然后将队首元素弹出,放到新元素后面,直到新元素在队首为止,此时队首元素就是栈顶元素。
空间复杂度O(n),时间复杂度分push 和 pop ,前者是O(n),后者是O(1)。
class MyStack2 {
/**
* Initialize your data structure here.
*/
function __construct() {
$this->q = [];
}
/**
* Push element x onto stack.
* @param Integer $x
* @return NULL
*/
function push($x) {
$this->q[] = $x;
$len = count($this->q);
while ($len > 1) {
$this->q[] = array_shift($this->q);
$len--;
}
}
/**
* Removes the element on top of the stack and returns that element.
* @return Integer
*/
function pop() {
return array_shift($this->q);
}
/**
* Get the top element.
* @return Integer
*/
function top() {
return $this->q[0];
}
/**
* Returns whether the stack is empty.
* @return Boolean
*/
function empty() {
return empty($this->q) ? true : false;
}
}
LeetCode#225-Implement Stack using Queues-用队列实现栈
标签:front removes image ack @param using function 前端 标准
原文地址:https://www.cnblogs.com/sunshineliulu/p/12547737.html