<?phpdeclare(strict_types=1);class Node{ // 该节点的元素值 public $e; // 下一个节点的指针 public $next; public function __construct($e = null, $next = null) { $this->e = $e; $this->next = $next; } // 将该节点对象的元素值用字符串输出 public function __toString(): string { return (strin...