Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suraj-raj01/cpp_programming
C++ Language (Basic to Advance)
https://github.com/suraj-raj01/cpp_programming
dsa-learning-series
Last synced: 2 days ago
JSON representation
C++ Language (Basic to Advance)
- Host: GitHub
- URL: https://github.com/suraj-raj01/cpp_programming
- Owner: suraj-raj01
- Created: 2024-02-05T20:08:55.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-13T19:25:59.000Z (7 months ago)
- Last Synced: 2024-04-13T21:52:10.508Z (7 months ago)
- Topics: dsa-learning-series
- Language: C++
- Homepage:
- Size: 1.17 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CPP_PROGRAMMING
LEARNER : SURAJ KUMAR
BASICS
TO
ADVANCED
DSA WITH C++ LANGUAGECore Concepts
* Data Structures:
* Arrays, Linked Lists, Stacks, Queues, Trees (Binary, Binary Search, AVL, Heaps), Graphs
* Understand their properties, operations, and use cases.
* Algorithms:
* Sorting (Bubble, Insertion, Selection, Merge, Quick, Heap)
* Searching (Linear, Binary)
* Dynamic Programming
* Greedy Algorithms
* Divide and Conquer
* Backtracking
* Graph Algorithms (DFS, BFS, Dijkstra's, Bellman-Ford)
* Time and Space Complexity:
* Analyze the efficiency of algorithms.
* Big O notation.
Problem-Solving Techniques
* Problem Decomposition: Break down complex problems into smaller, manageable subproblems.
* Algorithm Design: Choose appropriate algorithms based on problem requirements.
* Implementation: Write clean, efficient, and well-commented C++ code.
* Testing: Thoroughly test your solutions to ensure correctness.
Practice and Interview Preparation
* LeetCode, HackerRank, Codeforces: Practice coding challenges on these platforms.