예제 #1
0
파일: main.cpp 프로젝트: webserg/cpp
int main() {
	//C:\Users\webse\Source\Repos\cpp\algorithmsInPractice\dfs
	std::ios::sync_with_stdio(false);
	test_linked_list();
	std::cin.get();
	return 0;
}
예제 #2
0
파일: all.c 프로젝트: clint-tseng/to-mark
int main(void)
{
  test_linked_list();
  test_mark();
  test_marks();
  test_group();
}
예제 #3
0
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;
}
예제 #4
0
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;
}