Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ha7890846/dsa_with_cpp
Practise hands-on DSA.. It's My Fourth year of B.tech and I lost my 3yrs without Learning. Now, We'll Go long Untill we don't meet our Goal. Hope All things Be Good.
https://github.com/ha7890846/dsa_with_cpp
algorithms-and-data-structures dsa-learning-series dsa-practice dsa-questions
Last synced: 14 days ago
JSON representation
Practise hands-on DSA.. It's My Fourth year of B.tech and I lost my 3yrs without Learning. Now, We'll Go long Untill we don't meet our Goal. Hope All things Be Good.
- Host: GitHub
- URL: https://github.com/ha7890846/dsa_with_cpp
- Owner: ha7890846
- Created: 2023-10-04T15:24:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-27T16:11:49.000Z (23 days ago)
- Last Synced: 2024-10-27T18:34:04.654Z (23 days ago)
- Topics: algorithms-and-data-structures, dsa-learning-series, dsa-practice, dsa-questions
- Language: C++
- Homepage:
- Size: 2.05 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DSA Preparation...
A brief description of what this project does and who it's for
What is Data Structure?
A data structure is defined as a particular way of storing and organizing data in our devices to use the data efficiently and effectively. The main idea behind using data structures is to minimize the time and space complexities. An efficient data structure takes minimum memory space and requires minimum time to execute the data.
What is Algorithm?Algorithm is defined as a process or set of well-defined instructions that are typically used to solve a particular group of problems or perform a specific type of calculation. To explain in simpler terms, it is a set of operations performed in a step-by-step manner to execute a task.
How to start learning DSA?The first and foremost thing is dividing the total procedure into little pieces which need to be done sequentially.
The complete process to learn DSA from scratch can be broken into 4 parts:
Learn about Time and Space complexities
Learn the basics of individual Data Structures
Learn the basics of Algorithms
Practice Problems on DSA