本文主要跟大家分享php程式碼實作雙向佇列,主要以程式碼的形式跟大家分享,希望能幫助大家。
<?phpclass Deque { private $queue = array(); public function addFirst($item) { return array_unshift($this->queue, $item); } public function addLast($item) { return array_push($this->queue, $item); } public function removeFirst() { return array_shift($this->queue); } public function removeLast() { return array_pop($this->queue); } }
相關推薦:
以上是php程式碼實作雙向佇列的詳細內容。更多資訊請關注PHP中文網其他相關文章!