From c6238dda2245d96f3ed5bc141779c15f3c346776 Mon Sep 17 00:00:00 2001 From: Debashis Nandi Date: Fri, 27 Dec 2024 23:44:15 +0530 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index e69de29..10342c3 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,21 @@ +## Data Structures and Algorithms + +This repository contains a collection of **data structures and algorithms** implemented in **C++**. It is designed to provide efficient solutions to common algorithmic problems while adhering to clean coding practices and modular design. + +### Features + +- **Data Structures and Algorithms:** Implementations of data structures and algorithms based on the concepts from the book Introduction to Algorithms by Cormen, Leiserson, Rivest, and Stein (CLRS). +- **Modular Design:** Code is organized into manageable modules for better readability and reusability. +- **Testing:** + - Built with **CMake** as the build system for ease of compilation and dependency management. + - **Google Test** framework is integrated for comprehensive unit testing to ensure code correctness. + +### Folder Structure + +```plain text +datastructures-algorithms +├── Headers # Header Files +├── SourceCodes # Implementation of the solutions +├── Tests # Unit tests for implemented solutions +└── CMakeLists.txt # CMake configuration file +```