在 PHP 中,可以使用类来表示链表,并使用循环来遍历链表。下面是一个示例代码:
class ListNode {
public $val;
public $next;
public function __construct($val) {
$this->val = $val;
$this->next = null;
}
}
// 创建链表
$head = new ListNode(1);
$node2 = new ListNode(2);
$node3 = new ListNode(3);
$head->next = $node2;
$node2->next = $node3;
// 遍历链表
$current = $head;
while ($current != null) {
echo $current->val . " ";
$current = $current->next;
}
输出结果为:1 2 3
上一篇:php 时差 8(php时间差)
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站