Update illustration paths

This commit is contained in:
Angelos Chalaris
2023-02-16 22:26:39 +02:00
parent da31e8d138
commit 739c152b2f
18 changed files with 18 additions and 19 deletions

View File

@ -13,7 +13,7 @@ firstSeen: 2021-08-26T05:00:00-04:00
A binary tree is a data structure consisting of a set of linked nodes that represent a hierarchical tree structure. Each node is linked to others via parent-children relationship. Any given node can have at most two children (left and right). The first node in the binary tree is the root, whereas nodes without any children are the leaves.
![JavaScript Binary Tree visualization](./blog_images/ds-binary-tree.png)
![JavaScript Binary Tree visualization](./illustrations/ds-binary-tree.png)
Each node in a binary tree data structure must have the following properties: