Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 582 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 582 Bytes

Data Structures - Implemented in C

Structures so far

Dynamic Array - dynamicArray

Queue - two different implementations
- with a linked list - linked.c
- with a circular array - circular.c

Hash Table - Chaining_Hash_Table
- implemented with chaining

Trie Dictionary - stores words

Binary Max Heap

Sorts
- quick sort
- merge sort
- radix sort
- selection sort
- heap sort (under heap directory)
- insertion sort

Extra:
- dynamic programming problem solutions included under folder "dynamic"

There are many more to be added in the coming weeks!