featured image

PHP Binary Tree

PHP Binary Tree

Frank Frank Mon May 22 2017 01:00:00 GMT+0100 (British Summer Time) 1 min read

Mantis Binary Tree - PHP based binary tree released

Our first public composer package has been launched - https://packagist.org/packages/mantisbt/mantisbt

This will form a component for some of our future projects.

We have some plans for some open source projects, but these will be done around paid work. Will probably not be until around 2018-2019 that we are able to organise for a full product launch.

Understanding Binary Trees

Binary trees, for those unfamiliar, are a type of data structure characterized by a parent node that can have at most two child nodes: the left child and the right child. Binary trees find widespread use in computer science, serving vital roles in algorithm development, database systems, and machine learning.

Despite PHP’s widespread use and popularity, the scripting language traditionally doesn’t include built-in support for advanced data structures like binary trees. Developers often need to hand-craft these structures, a process which can be time-consuming and prone to errors. This is where our Simple PHP Binary Tree Library comes in, bridging this gap and facilitating the manipulation of binary trees.

Prev
MIT Licence