An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

## algs4cpp

Algorithms 4/e textbook
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
```