Skip to content

Instantly share code, notes, and snippets.

@ashishjain999
ashishjain999 / LinkedList.class.php
Created November 7, 2016 06:03 — forked from zachflower/LinkedList.class.php
PHP implementation of a singly linked list.
<?php
class Node {
public $data = NULL;
public $next = NULL;
public function __construct($data = NULL) {
$this->data = $data;
}
}