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

https://github.com/jackparsonss/datastructures-algorithms


https://github.com/jackparsonss/datastructures-algorithms

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Data Structures and Algorithms

This repo is for me to learn data structures and algorithms through implementing them myself

## Data Structures Implemented so far:
### Lists:
* Queue
* Stack
* Min Heap
* Singly Linked List
* Doubly Linked List

### Trees:
* Binary Search Tree
* AVL Tree

## Algorithms Implemented so far:
### Numeric Algorithms:
* Factorial
* Fibonacci
* Greatest Common Denominator
* Prime Numbers
* To Binary

### Searching Algorithms:
* Binary Search

### Sorting Algorithms:
* Selection Sort
* Bubble Sort
* Insertion Sort
* Merge Sort
* Quick Sort
* Counting Sort
* Shell Sort