Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jnlandu/data_structures
- Owner: jnlandu
- License: mit
- Created: 2024-03-22T23:20:47.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-23T11:53:03.000Z (9 months ago)
- Last Synced: 2024-03-24T00:34:56.347Z (9 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.