Better to use CMake ( >= 3.12), C++14 (gcc >= 5.0, Clang >= 3.4, MSVC >= 19.0/VS2015)
- run
./clean.shbefore generating or updating makefile from CMake, because last CMake cache may block updating of some changes. - run
cmake .to generate or update makefile using CMake. - run
maketo compile all source codes insrc/, the executable binary files will be stored inbin/ cdtobin/and verify manually- run
make cleanto delete all binary files inbin/
- graph/topological: 206, 210
- tire tree: 208, 211, 212
- dp: 198, 213
- kmp: