Archive for January 23rd, 2008

More useless PHP – Inplace Reverse

Code <?php /*     PHP implementation of a common programming problem:         Reversing a singly linked list */     error_reporting(E_ALL | E_STRICT);     //  This is our basic node     class WordNode     {         public $word;         public $nextNode;   [...]

Posted by Matthew on January 23rd, 2008

Filed under php, programming | 1 Comment »