Skip to content

Update README.md #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
```
Loading