mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-25 14:56:28 +08:00
c36010b324
* Create chapter_graph * Delete chapter_graph * add C code for graph * add C code for graph * Create graph_adjacency_list.c add C code for graph * Update CMakeLists.txt * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update format and output * Update graph_adjacency_list.c * Update CMakeLists.txt for c code of graph * Update format of c code * Update format of c code * Update format of c code * Update verticesList Change the data structure of the storage list from a linked list to a linear table * Update graph_adjacency_list.c * Update graph_adjacency_matrix.c * Create graph_adjacency_list_test.c * Create graph_bfs * Update CMakeLists.txt * Update graph_adjacency_list.c
16 lines
456 B
CMake
16 lines
456 B
CMake
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)
|
|
add_subdirectory(chapter_stack_and_queue)
|
|
add_subdirectory(chapter_heap)
|
|
add_subdirectory(chapter_hashing)
|
|
add_subdirectory(chapter_tree)
|
|
add_subdirectory(chapter_searching)
|
|
add_subdirectory(chapter_sorting)
|
|
add_subdirectory(chapter_graph)
|