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

https://github.com/ifrazaib/datastructurescodes

In this repository i have added data structures codes that includes all the basics concepts to master the concepts of (DSA) in c++ language.
https://github.com/ifrazaib/datastructurescodes

arrays hashing linkedlist queue stack trees

Last synced: 4 months ago
JSON representation

In this repository i have added data structures codes that includes all the basics concepts to master the concepts of (DSA) in c++ language.

Awesome Lists containing this project

README

        

# Data Structures and Algorithms
---
##### In this repository, I have compiled all the concepts of data structures that I have learned throughout my semester. This includes fundamental concepts such as:

#### Abstract Data Types (ADT)
#### Linked Lists
+ Singly Linked List
+ Doubly Linked List
+ Circular Linked List
#### Queues (FIFO)
+ Input Restricted Queues
#### Stacks (LIFO)
#### Trees
+ Binary Search Trees (BST)
+ AVL Trees
#### Hashing
+ Linear Hashing
+ Quadratic Probing
+ Double Hashing
#### Graphs
+ Breadth-First Search (BFS)
+ Depth-First Search (DFS)
##### All data structures handled with pointers except Simple Array. Some Data structure implemented with different variations.
![DSA](https://github.com/Ifra-Zaib/DataStructures-Problems/assets/172352661/b72aaa72-77b0-4958-8304-939811bd22f9)