https://github.com/ali1raz/dsa-in-cpp
DSA in cpp
https://github.com/ali1raz/dsa-in-cpp
cpp cpp-programming dsa dsa-algorithm dsa-cpp dsa-learning-series dsa-practice dsa-project dsalgo dsalgo-questions graph graph-algorithms linked-list linked-lists queue stack tree-search tree-structure
Last synced: 12 months ago
JSON representation
DSA in cpp
- Host: GitHub
- URL: https://github.com/ali1raz/dsa-in-cpp
- Owner: Ali1raz
- Created: 2024-07-25T05:52:50.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-27T02:15:54.000Z (over 1 year ago)
- Last Synced: 2025-01-30T00:33:50.300Z (about 1 year ago)
- Topics: cpp, cpp-programming, dsa, dsa-algorithm, dsa-cpp, dsa-learning-series, dsa-practice, dsa-project, dsalgo, dsalgo-questions, graph, graph-algorithms, linked-list, linked-lists, queue, stack, tree-search, tree-structure
- Language: C++
- Homepage:
- Size: 2.55 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## DATA STRUCTURES AND ALGORITHMS cheatsheet
### Download all programs by running this in your terminal:
```
git clone https://github.com/Ali1raz/DSA-in-cpp.git DSA_cpp
```
The OOP concepts used are:
1. Classes
2. Objects
3. Constructors
4. Member Variables
5. Member Functions
6. Pointers
7. Dynamic Memory Allocation
8. Encapsulation
9. Abstraction
## Data Structures:
> Data structures are a way to organizing and storing data in computer, so that it can be efficiently accessed, processed and manipulated. They provide a logical and efficient modal for organizing data elements and enable effective use, persistence and sharing of data.
### There are various types of Data structures, including:
1. Linear data structures:
- Arrays
- Linked lists
- [Single Linked Lists](./SLL/SLL.cpp)
- [Double Linked Lists](./DLL/DLL.cpp)
- Circular Linked Lists
- [Circular singly linked lists](./CSLL/CSLL.cpp)
- [Circular Doubly linked lists](./CDLL/CDLL.cpp)
- [Queue](./Queue/)
- [Stack](./Stack/)
2. Non-linear data structures:
- [Trees](./Non-Linear-ds/TREE/)
- [Graphs](./Non-Linear-ds/GRAPH/)
## Algorithms:
> Algorithms are step-by-step procedure to solve a problem efficiently and effectively. It's like a recipe for computer!
Any contributions would be appreciated.