Skip to content

CodeByAidan/Algorithms-DataStructures

Repository files navigation

Algorithms and Data Structures in C++

Leendert Ammeraal, 1996

link: https://www.amazon.com/Algorithms-Data-Structures-Leen-Ammeraal/dp/0471963550

wtf how do i run?

Super simple, using the CMakeLists.txt file, say you want to run roman1.cpp in the Chapter1-Some-Aspects-of-Programming-in-C++ folder in the 1-1_Introduction folder.

All you would have to do, is simply uncomment the following lines

set(SOURCE_FILES
#        Project/src/Chapter1-Some-Aspects-of-Programming-in-C++/1-1_Introduction/roman1.cpp
...
)

and

include_directories(
#        Project/src/Chapter1-Some-Aspects-of-Programming-in-C++/1-1_Introduction
...
)

and then run the following commands in the root directory of the project

mkdir build
path/to/cmake --build build --target Algorithms_DataStructures -j 14

and then run the executable in the build folder

./build/Algorithms_DataStructures

About

Intro to DSA in C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published