Algorithms in PHP: Deques (and circular buffers + linked lists)
If you’ve ever tried to use an array as a queue or stack (via array_pop , array_push , array_unshift and array_shift ), you may have discovered they are slow, particularly array_unshift which requires shifting the...