Skip to content

Instantly share code, notes, and snippets.

@dialyy
dialyy / reversedLinkedList.php
Last active March 14, 2022 16:20
php : reverse a linked list
<?php
class Node {
public $data = null;
public $next = null;
public function __construct(string $data = null){
$this->data = $data;
}