int main() { //C:\Users\webse\Source\Repos\cpp\algorithmsInPractice\dfs std::ios::sync_with_stdio(false); test_linked_list(); std::cin.get(); return 0; }
int main(void) { test_linked_list(); test_mark(); test_marks(); test_group(); }
int test_all() { int result = 0; result += test_random(); result += test_linked_list(); result += test_vstack(); result += test_vqueue(); result += test_sort(); /* result += test_hash(); HASH IS NOT COMPLETE */ return result; }
int main() { #ifdef NDEBUG printf("Must compile without NDEBUG=1\n"); exit(-1); #endif test_buffer(); test_list(); test_linked_list(); printf(" Tests Finished. Zero Errors\n"); return 0; }