https://github.com/jpcano/algs4cpp
My implementation in C++ of the code for the book Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne
https://github.com/jpcano/algs4cpp
Last synced: 20 days ago
JSON representation
My implementation in C++ of the code for 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 (27 days ago)
- Default Branch: main
- Last Pushed: 2025-05-06T06:23:26.000Z (27 days ago)
- Last Synced: 2025-05-06T07:28:28.395Z (27 days ago)
- Language: C++
- Size: 1.95 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
```