324篇 PHP实现链表反转 <?php class Node { private $value; private $next; public function __construct($value = null) { $this-><