https://github.com/jpcano/algs4cpp
My C++ implementation of the code in the book: Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne
https://github.com/jpcano/algs4cpp
algorithms cpp data-structures
Last synced: 7 days ago
JSON representation
My C++ implementation of the code in the book: Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne
- Host: GitHub
- URL: https://github.com/jpcano/algs4cpp
- Owner: jpcano
- Created: 2025-05-06T06:00:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-16T22:10:55.000Z (about 1 year ago)
- Last Synced: 2025-10-26T01:35:28.430Z (9 months ago)
- Topics: algorithms, cpp, data-structures
- Language: C++
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## algs4cpp
This repository contains my C++ implementation of the algorithms an exercises in the textbook Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne.
The official version at https://github.com/kevin-wayne/algs4
is maintained and updated by the authors and only contains the official Java implmentation.
### Build and test
```shell
cmake -B build .
cmake --build build
build/tests
```