From a5b63fd0792abfb1095713e7751b9615bea806b0 Mon Sep 17 00:00:00 2001 From: Ashiqur Rahman Date: Mon, 1 Jul 2024 12:29:25 +0600 Subject: [PATCH 1/2] Create README.md --- README.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..975c513 --- /dev/null +++ b/README.md @@ -0,0 +1,50 @@ + +ChatGPT +Certainly! Here's a template for a GitHub repository description focused on data structures and algorithms questions solved in C++: + +Data Structures and Algorithms in C++ +This repository contains solutions to various classic data structures and algorithms problems implemented in C++. Each problem includes a detailed explanation and analysis of the solution approach. + +Table of Contents +Sorting Algorithms + +Bubble Sort +Selection Sort +Insertion Sort +Merge Sort +Quick Sort +Searching Algorithms + +Linear Search +Binary Search +Data Structures + +Linked List +Stack +Queue +Binary Tree +Hash Table +Dynamic Programming + +Fibonacci Sequence +Longest Common Subsequence +Knapsack Problem +Graph Algorithms + +Breadth-First Search (BFS) +Depth-First Search (DFS) +Dijkstra's Algorithm +Minimum Spanning Tree (Prim's and Kruskal's algorithms) +Usage +Each algorithm/problem is implemented in C++ and placed in its own directory. Inside each directory, you'll find: + +Source code: The C++ implementation of the algorithm. +README.md: Explanation of the problem, approach, and the code itself. +Contributing +Contributions are welcome! If you'd like to contribute an algorithm or improve an existing one, please follow these steps: + +Fork this repository. +Create a new branch (git checkout -b feature/new-algorithm). +Commit your changes (git commit -am 'Add new algorithm: XYZ'). +Push to the branch (git push origin feature/new-algorithm). +Submit a pull request. From 4189e929b426ee9c8b2a52f95d393b7de909b797 Mon Sep 17 00:00:00 2001 From: Ashiqur Rahman Date: Mon, 1 Jul 2024 12:29:51 +0600 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 975c513..ddda0f1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,3 @@ - -ChatGPT -Certainly! Here's a template for a GitHub repository description focused on data structures and algorithms questions solved in C++: - Data Structures and Algorithms in C++ This repository contains solutions to various classic data structures and algorithms problems implemented in C++. Each problem includes a detailed explanation and analysis of the solution approach.