Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jnlandu/data_structures

This repo contains the python implementation of some of the basic data structures, like stacks, queues, linked list, trees, etc.
https://github.com/jnlandu/data_structures

Last synced: about 1 month ago
JSON representation

This repo contains the python implementation of some of the basic data structures, like stacks, queues, linked list, trees, etc.

Awesome Lists containing this project

README

        

# data_structures
This repo contains the python implementation of some of the basic data structures, like stacks, queues, linked list, trees, etc.

## Binary Search Tree(BST):

Binary Search Tree (or Sorted binary tree), is a roted binary tree data structures where each node has at most two children. See for example, https://en.wikipedia.org/wiki/Binary_search_tree or https://ranger.uta.edu/~huang/teaching/CSE5311/CSE5311_Lecture10.pdf.