2023-01-11 00:48:48 +08:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(hello_algo C)
|
|
|
|
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
|
|
|
|
include_directories(./include)
|
|
|
|
|
|
|
|
add_subdirectory(chapter_computational_complexity)
|
|
|
|
add_subdirectory(chapter_array_and_linkedlist)
|
2023-01-12 21:09:51 +08:00
|
|
|
add_subdirectory(chapter_stack_and_queue)
|
2023-04-23 23:44:49 +08:00
|
|
|
add_subdirectory(chapter_heap)
|
|
|
|
add_subdirectory(chapter_hashing)
|
2023-04-17 18:22:18 +08:00
|
|
|
add_subdirectory(chapter_binary_search)
|
2023-04-18 14:31:23 +08:00
|
|
|
add_subdirectory(chapter_tree)
|
2023-04-17 18:22:18 +08:00
|
|
|
add_subdirectory(chapter_searching)
|
2023-04-23 23:44:49 +08:00
|
|
|
add_subdirectory(chapter_sorting)
|