這篇文章主要介紹了PHP實作的堆疊資料結構,結合PHP實例形式分析了php定義堆疊及入棧、出棧、遍歷棧等相關操作技巧,需要的朋友可以參考下本文,本文實例講述了PHP實現的棧資料結構。分享給大家供大家參考,具體如下:
利用php物件導向思想,堆疊的屬性有top、最大儲存數、和儲存容器(這裡利用了php數組)。
程式碼如下:實作了入堆疊、出棧、遍歷堆疊的幾個方法:
<?php class Stack{ const MAXSIZE = 4;// 栈最大容量 private $top = -1; private $stack = array();// 利用数组存储数据 public function construct(){ $this->stack = array(); } // 入栈 public function push($ele){ if ($this->top >= self::MAXSIZE-1){ echo 'stack is full...'; return false; } $this->stack[++$this->top] = $ele;// 此处必须是++i,先计算再使用 } // 出栈,返回出栈元素 public function pop(){ if ($this->top == -1){ echo 'stack is empty...'; return false; } $ele = $this->stack[$this->top]; unset($this->stack[$this->top--]);// 此处必须是i--,先使用再计算(注意出栈和入栈的区别) return $ele; } // 遍历栈 public function show(){ if ($this->top == -1){ echo 'stack is empty...'; return false; } for($i=$this->top; $i>-1; $i--){ echo $this->stack[$i].'<br/>'; } } } $stack = new Stack; $stack->push(1); $stack->push(2); $stack->push(3); $stack->push(4); //print_r($stack); $stack->show(); $a = $stack->pop(); $a = $stack->pop(); $a = $stack->pop(); $stack->show();
4 3 2 1 1以上就是本文所有的內容了,希望可以帶給大家幫助! !
相關推薦:
以上是PHP實作的堆疊資料結構範例【入棧、出棧、遍歷棧】_php技巧的詳細內容。更多資訊請關注PHP中文網其他相關文章!