Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 727 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 727 Bytes

Data_Structures

This repository includes some of the main data structures that were taught in my Data Structures course at my university in which I was required to implement. These data structures include Dynamic Arrays, Linked Lists, Binary Trees, AVL Trees, Min Heap Binary Tree, and HashMaps. These implemented data structures also utilize abstract data types (ADTs). The ADTs Stack, Queues, and Deques were utilized for the Linked List data structure. The Bag ADT was utilized with the Dynamic Array data structure. Priority Queues and Heaps ADTs were utilized with the MinHeap data structure.

I have updated some of these implementations since graduating to refresh my knowledge on how these data structures work.