mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 00:16:28 +08:00
2d17ee8e92
* feat(codes/c): Add array_deque.c * Update array_deque.c --------- Co-authored-by: Yudong Jin <krahets@163.com>
5 lines
230 B
CMake
5 lines
230 B
CMake
add_executable(array_stack array_stack.c)
|
|
add_executable(linkedlist_stack linkedlist_stack.c)
|
|
add_executable(array_queue array_queue.c)
|
|
add_executable(linkedlist_queue linkedlist_queue.c)
|
|
add_executable(array_deque array_deque.c)
|