mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-01 03:24:24 +08:00 
			
		
		
		
	 f98b337144
			
		
	
	f98b337144
	
	
	
		
			
			* feat: re-impl hanota.c * chore: Remove useless comment code * Update hanota.c * Update hanota.c * Update print_util.h * Update CMakeLists.txt --------- Co-authored-by: Yudong Jin <krahets@163.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			619 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			619 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_hashing)
 | |
| add_subdirectory(chapter_tree)
 | |
| add_subdirectory(chapter_heap)
 | |
| add_subdirectory(chapter_graph)
 | |
| add_subdirectory(chapter_searching)
 | |
| add_subdirectory(chapter_sorting)
 | |
| add_subdirectory(chapter_divide_and_conquer)
 | |
| add_subdirectory(chapter_backtracking)
 | |
| add_subdirectory(chapter_dynamic_programming)
 | |
| add_subdirectory(chapter_greedy)
 |