https://github.com/darwinz/data-structures-and-algorithms
A compilation of some data structures and algorithms for various languages
https://github.com/darwinz/data-structures-and-algorithms
algorithms data-structures golang hacktoberfest javascript python
Last synced: 8 months ago
JSON representation
A compilation of some data structures and algorithms for various languages
- Host: GitHub
- URL: https://github.com/darwinz/data-structures-and-algorithms
- Owner: darwinz
- Created: 2020-06-05T08:02:15.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-16T08:25:14.000Z (over 3 years ago)
- Last Synced: 2025-07-25T11:11:08.189Z (8 months ago)
- Topics: algorithms, data-structures, golang, hacktoberfest, javascript, python
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Data Structures and Algorithms

This repository is a compilation of some data structures
and algorithms in various programming languages.
## Data Structures
### Python
* Array List
* Binary Search Tree
* Hash Table
* Linked List
* Min Heap
* Resizable Array
* Stack
* Trie
### Go
* Binary Tree
* Circular Queue
* Heap
* Linked List
* Queue
* Stack
### Java
* Circular Queue
* Heap
* Linked List
* Queue
* Stack
## Algorithms
### Python
* Binary Search
* Count the paths matrix
* Longest common subsequence
* Memoization
* Merge Sort
* Quick Sort
* Selection Sort
* Vectors
### Go
* Binary Search
* Bubble Sort
* Counting Sort
* Euclids
* Insertion Sort
* Merge Sort
* Quick Sort
* Selection Sort
### Java
* Binary Search
* Bubble Sort
* Insertion Sort
* Merge Sort
* Quick Sort
* Selection Sort
### JavaScript
* Linear Search
* Quick Sort
* Selection Sort