https://github.com/vishal-raj-1/dsa-preperation
https://github.com/vishal-raj-1/dsa-preperation
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vishal-raj-1/dsa-preperation
- Owner: Vishal-raj-1
- Created: 2021-07-28T08:37:55.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-11T17:54:32.000Z (about 4 years ago)
- Last Synced: 2025-01-14T02:13:19.685Z (9 months ago)
- Language: C++
- Size: 335 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
This repository contains some of the important interview questions on *important* Data structures and Algorithms topics.
Each algorithm and data structure has its own separate README with related explanations and links for further reading (including ones to YouTube videos).Data Structures
A data structure is a particular way of organizing and storing data in a computer so that it can be accessed and modified efficiently. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data.
**Topics Covered(Till Now)**
* [Heap](https://github.com/urvashi-code1255/INTERVIEW-QUESTIONS/tree/master/Heaps)
* [Stack](https://github.com/urvashi-code1255/INTERVIEW-QUESTIONS/tree/master/Stack)**Next Topic**
* Graph
Algorithms
An algorithm is an unambiguous specification of how to solve a class of problems. It is a set of rules that precisely define a sequence of operations.
**Topics Covered(Till Now)**
* [Recursion](https://github.com/urvashi-code1255/INTERVIEW-QUESTIONS/tree/master/Recursion)
* [Binary Search](https://github.com/urvashi-code1255/INTERVIEW-QUESTIONS/tree/master/Binary_search)
* [Dynamic Programming](https://github.com/urvashi-code1255/INTERVIEW-QUESTIONS/tree/master/DP)