https://github.com/walkccc/clrs-cpp
Implement CLRS psuedocode in C++
https://github.com/walkccc/clrs-cpp
clrs cpp introduction-to-algorithms
Last synced: 3 months ago
JSON representation
Implement CLRS psuedocode in C++
- Host: GitHub
- URL: https://github.com/walkccc/clrs-cpp
- Owner: walkccc
- Created: 2019-11-05T17:50:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T22:24:04.000Z (almost 5 years ago)
- Last Synced: 2025-06-29T14:39:16.106Z (4 months ago)
- Topics: clrs, cpp, introduction-to-algorithms
- Language: C++
- Size: 49.8 KB
- Stars: 92
- Watchers: 5
- Forks: 27
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CLRS in C++
> Work on implementing all pseudo code in CLRS Third Edition.
## Coding Style
> I believe messy code is costing you.
Therefore, in order to make everyone delighted, I format all the code.
- **C++** codes are formatted by [clang-format](https://clang.llvm.org/docs/ClangFormat.html) following the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html#Spaces_vs._Tabs). You can see the configuration [here](https://github.com/google/leveldb/blob/master/.clang-format).
## General implementation
Make all code as clean as possible and carefully organize each exercise and problem.