2023-03-14 20:40:33 +08:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(hello_algo CXX)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
|
|
|
|
include_directories(./include)
|
|
|
|
|
2023-03-15 01:43:28 +08:00
|
|
|
add_subdirectory(chapter_computational_complexity)
|
|
|
|
add_subdirectory(chapter_array_and_linkedlist)
|
2023-03-14 20:40:33 +08:00
|
|
|
add_subdirectory(chapter_stack_and_queue)
|
2023-03-15 01:43:28 +08:00
|
|
|
add_subdirectory(chapter_hashing)
|
|
|
|
add_subdirectory(chapter_tree)
|
2023-03-14 20:40:33 +08:00
|
|
|
add_subdirectory(chapter_heap)
|
|
|
|
add_subdirectory(chapter_graph)
|
2023-03-15 01:43:28 +08:00
|
|
|
add_subdirectory(chapter_sorting)
|
|
|
|
add_subdirectory(chapter_searching)
|
2023-06-13 21:16:54 +08:00
|
|
|
add_subdirectory(chapter_backtracking)
|