There are some implementations for algorithms that often appear in coding interviews. Those algorithmic questions come from leetcode and sword-finger-offer. Also analyses are in the test.cc
.
make -j4
./test
- add coding implementations in your
.cc
and.h
files- make sure your
.cc
file are included inMakefile
. if not include, you should add your file intoSRC_COM
.- add test case in
test.cc
- recompile this project
make -j4
- run your test case:
./test