Computer Science
Fundamental computer science concepts like tree traversal, heaps, linked lists, and coroutines, implemented and explained in PHP.
Exploring Coroutines in PHP
Category: Computer Science
Coroutines are functions that can pause and resume execution while remembering their internal state, enabling bi-directional communication.
(Singly) Linked Lists explained in PHP
Category: Data Structures
Linked lists are a linear data structure that provides quick insertion and deletion.
Heaps explained in PHP
Category: Data Structures
Heaps are an effective data structure for quick access to the highest value of a dataset.
Trees and Tree Traversal in PHP
Category: Computer Science
In this post I want to introduce you to Tree structures. What they are, how you can use them, and in which situation they can be helpful.