https://github.com/debashis08/datastructures-algorithms
A comprehensive collection of Data Structures and Algorithms implemented in C++, based on the concepts from the book Introduction to Algorithms by Cormen, Leiserson, Rivest, and Stein (CLRS). This repository includes various coding challenges and solutions, with unit tests to ensure correctness.
https://github.com/debashis08/datastructures-algorithms
algorithms bitwise-algorithms clang-tidy clrs clrs-algorithhms clrs-book clrs-implementation cmake datastructures datastructures-algorithms dsa dynamic-programming graph greedy-algorithms implementation problem-solving tree
Last synced: 14 days ago
JSON representation
A comprehensive collection of Data Structures and Algorithms implemented in C++, based on the concepts from the book Introduction to Algorithms by Cormen, Leiserson, Rivest, and Stein (CLRS). This repository includes various coding challenges and solutions, with unit tests to ensure correctness.
- Host: GitHub
- URL: https://github.com/debashis08/datastructures-algorithms
- Owner: Debashis08
- License: mit
- Created: 2024-07-15T16:42:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-03T21:42:50.000Z (3 months ago)
- Last Synced: 2026-02-04T10:44:22.429Z (3 months ago)
- Topics: algorithms, bitwise-algorithms, clang-tidy, clrs, clrs-algorithhms, clrs-book, clrs-implementation, cmake, datastructures, datastructures-algorithms, dsa, dynamic-programming, graph, greedy-algorithms, implementation, problem-solving, tree
- Language: C++
- Homepage:
- Size: 272 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
## 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
├── include # Header Files
├── src # Implementation of the solutions
├── tests # Unit tests for implemented solutions
└── CMakeLists.txt # CMake configuration file
```