mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-01-17 15:18:13 +01:00
18 lines
236 B
PHP
18 lines
236 B
PHP
<?php
|
|
|
|
/**
|
|
* Linked List Node Class
|
|
*/
|
|
class Node
|
|
{
|
|
public ?Node $next = null;
|
|
public ?Node $prev = null;
|
|
public $data;
|
|
|
|
// Constructor
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
}
|