An open API service indexing awesome lists of open source software.

https://github.com/fix2015/structure_bst

A **Binary Search Tree (BST)** is a tree data structure where each node has at most two children, referred to as the left and right children. The left child’s value is less than the parent node’s value, and the right child’s value is greater than the parent node’s value.
https://github.com/fix2015/structure_bst

Last synced: 2 months ago
JSON representation

A **Binary Search Tree (BST)** is a tree data structure where each node has at most two children, referred to as the left and right children. The left child’s value is less than the parent node’s value, and the right child’s value is greater than the parent node’s value.

Awesome Lists containing this project