日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

用PHP实现单向链表

發布時間:2024/4/14 php 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 用PHP实现单向链表 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

供參考,代碼還可繼續打磨

同時放在了我的github上:https://github.com/hheedat/php_code/blob/master/58_linked_list.php

<?phpclass Node {public $data;public $next; }class LinkedList {private $_head;private $_tail;private $_length;function init(){$this->_head = $this->_tail = null;$this->_length = 0;}function makeNode($data){$node = new Node();$node->data = $data;return $node;}function push($node){if ($this->_length == 0) {$this->_head = $this->_tail = $node;} else {$this->_tail->next = $node;$this->_tail = $node;}++$this->_length;}function pop(){if ($this->_length == 0) {return false;} elseif ($this->_length == 1) {$node = $this->makeNode($this->_tail->data);$this->_head = $this->_tail = null;--$this->_length;return $node;} elseif ($this->_length > 1) {$node = $this->makeNode($this->_tail->data);$secondTail = $this->_head;while ($secondTail->next != $this->_tail) {$secondTail = $secondTail->next;}$this->_tail = $secondTail;$this->_tail->next = null;--$this->_length;return $node;}}function unshift($node){if ($this->_length == 0) {$this->_head = $this->_tail = $node;} else {$node->next = $this->_head;$this->_head = $node;}++$this->_length;}function shift(){if ($this->_length == 0) {return false;} else {$node = $this->makeNode($this->_head->data);$this->_head = $this->_head->next;--$this->_length;return $node;}}function map($func){$node = $this->_head;$index = 0;while ($node != null) {$func($node->data, $index++);$node = $node->next;}}function reverse(){if ($this->_length == 0) return;$node = $this->_head;$next = $node->next;while ($next != null) {$third = $next->next;$next->next = $node;$node = $next;$next = $third;}$this->_tail = $this->_head;$this->_tail->next = null;$this->_head = $node;}function reverseRecursion(){if ($this->_length == 0) return;$head = $this->_head;$tail = $this->_tail;function reverse($next, $node, $tail){if ($node == $tail || $node == null) {return;} else {reverse($next->next, $next, $tail);$next->next = $node;}}reverse($head->next, $head, $tail);$this->_tail = $head;$this->_tail->next = null;$this->_head = $tail;}function getLength(){return $this->_length;} }//test code $linkedList = new LinkedList(); for ($i = 0; $i < 5; ++$i) {$node = $linkedList->makeNode(($i + 1) . ' apple');$linkedList->push($node);$node = $linkedList->makeNode(($i + 1) . ' banana');$linkedList->unshift($node); }echo "linked list length is " . $linkedList->getLength() . " \n"; $linkedList->map(function ($val, $index) {echo "index is : $index \t value is : $val \n"; });echo "shift , value is : " . $linkedList->shift()->data . "\n"; echo "pop , value is : " . $linkedList->pop()->data . "\n"; echo "shift , value is : " . $linkedList->shift()->data . "\n"; echo "pop , value is : " . $linkedList->pop()->data . "\n";echo "linked list length is " . $linkedList->getLength() . " \n"; $linkedList->map(function ($val, $index) {echo "index is : $index \t value is : $val \n"; });$linkedList->reverse(); echo "linked list length is " . $linkedList->getLength() . " after reverse\n"; $linkedList->map(function ($val, $index) {echo "index is : $index \t value is : $val \n"; });$linkedList->reverseRecursion(); echo "linked list length is " . $linkedList->getLength() . " after reverse recursion\n"; $linkedList->map(function ($val, $index) {echo "index is : $index \t value is : $val \n"; });

預期的輸出是:

linked list length is 10
index is : 0 value is : 5 banana
index is : 1 value is : 4 banana
index is : 2 value is : 3 banana
index is : 3 value is : 2 banana
index is : 4 value is : 1 banana
index is : 5 value is : 1 apple
index is : 6 value is : 2 apple
index is : 7 value is : 3 apple
index is : 8 value is : 4 apple
index is : 9 value is : 5 apple
shift , value is : 5 banana
pop , value is : 5 apple
shift , value is : 4 banana
pop , value is : 4 apple
linked list length is 6
index is : 0 value is : 3 banana
index is : 1 value is : 2 banana
index is : 2 value is : 1 banana
index is : 3 value is : 1 apple
index is : 4 value is : 2 apple
index is : 5 value is : 3 apple
linked list length is 6 after reverse
index is : 0 value is : 3 apple
index is : 1 value is : 2 apple
index is : 2 value is : 1 apple
index is : 3 value is : 1 banana
index is : 4 value is : 2 banana
index is : 5 value is : 3 banana
linked list length is 6 after reverse recursion
index is : 0 value is : 3 banana
index is : 1 value is : 2 banana
index is : 2 value is : 1 banana
index is : 3 value is : 1 apple
index is : 4 value is : 2 apple
index is : 5 value is : 3 apple

轉載于:https://www.cnblogs.com/zyxx/p/5720032.html

總結

以上是生活随笔為你收集整理的用PHP实现单向链表的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。