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.
- Host: GitHub
- URL: https://github.com/ifrazaib/datastructurescodes
- Owner: ifrazaib
- Created: 2024-06-12T14:05:00.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-06-12T14:14:27.000Z (12 months ago)
- Last Synced: 2025-02-18T12:53:26.862Z (4 months ago)
- Topics: arrays, hashing, linkedlist, queue, stack, trees
- Language: C++
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
